-
Notifications
You must be signed in to change notification settings - Fork 47
/
eslint.config.mjs
40 lines (39 loc) · 965 Bytes
/
eslint.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import js from '@eslint/js';
import globals from 'globals';
import pluginVue from 'eslint-plugin-vue';
export default [
js.configs.recommended,
...pluginVue.configs['flat/recommended'],
{
languageOptions: {
globals: {
...globals.browser,
...globals.node,
},
},
rules: {
'vue/no-unused-vars': 'error',
'vue/script-setup-uses-vars': 'error',
'vue/multi-word-component-names': 'off',
'vue/require-default-prop': 'off',
'vue/no-reserved-component-names': 'off',
'vue/max-attributes-per-line': 'off',
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
},
},
{
ignores: [
'.ruby-lsp/',
'.yarn/',
'app/javascript/routes.js',
'config/',
'db/',
'log/',
'node_modules/',
'public/',
'tmp/',
'vendor/',
],
},
];