init (pfp and unformatted text)
Some checks failed
ci / ci (22, ubuntu-latest) (push) Has been cancelled

This commit is contained in:
Bon Systems 2025-05-17 02:15:57 +03:00
commit 8ae956dee8
19 changed files with 10759 additions and 0 deletions

20
eslint.config.ts Normal file
View file

@ -0,0 +1,20 @@
import js from '@eslint/js'
import eslintPluginVue from 'eslint-plugin-vue'
import ts from 'typescript-eslint'
export default ts.config(
js.configs.recommended,
...ts.configs.recommended,
...eslintPluginVue.configs['flat/recommended'],
{
files: ['*.vue', '**/*.vue'],
languageOptions: {
parserOptions: {
parser: '@typescript-eslint/parser'
}
},
rules: {
'vue/multi-word-component-names': 'off'
}
}
)