feat: initial import from base-configs

This commit is contained in:
2025-06-23 02:26:02 +03:00
parent 812b66474e
commit 8332ead96d
9 changed files with 381 additions and 1 deletions

17
index.cjs Normal file
View File

@@ -0,0 +1,17 @@
'use strict'
module.exports = {
arrowParens: 'avoid',
proseWrap: 'never',
semi: false,
singleQuote: true,
trailingComma: 'none',
overrides: [
{
files: ['*.css', '*.scss'],
options: {
singleQuote: false
}
}
]
}