Initial commit
This commit is contained in:
17
eslint.config.mjs
Normal file
17
eslint.config.mjs
Normal file
@@ -0,0 +1,17 @@
|
||||
import eslintConfig from '@electron-toolkit/eslint-config'
|
||||
import eslintConfigPrettier from '@electron-toolkit/eslint-config-prettier'
|
||||
import eslintPluginVue from 'eslint-plugin-vue'
|
||||
|
||||
export default [
|
||||
{ ignores: ['**/node_modules', '**/dist', '**/out'] },
|
||||
eslintConfig,
|
||||
...eslintPluginVue.configs['flat/recommended'],
|
||||
{
|
||||
files: ['**/*.{js,jsx,vue}'],
|
||||
rules: {
|
||||
'vue/require-default-prop': 'off',
|
||||
'vue/multi-word-component-names': 'off'
|
||||
}
|
||||
},
|
||||
eslintConfigPrettier
|
||||
]
|
||||
Reference in New Issue
Block a user