-
-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy patheslint.config.mjs
More file actions
28 lines (27 loc) · 684 Bytes
/
eslint.config.mjs
File metadata and controls
28 lines (27 loc) · 684 Bytes
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
import simon from '@antfu/eslint-config'
export default simon(
{
ignores: [
'**/**/*.d.ts',
'test/fixtures/unclosed-fence.md',
],
},
{
rules: {
'vue/no-v-for-template-key-on-child': 'off',
'no-console': 'off',
'ts/ban-types': 'off',
'jsdoc/require-returns-description': 'off',
'no-new-func': 'off',
'unicorn/no-new-array': 'off',
'jsdoc/require-returns-check': 'off',
'jsdoc/check-param-names': 'off',
'no-cond-assign': 'off',
'no-eval': 'off',
'antfu/no-import-dist': 'off',
'vue/require-toggle-inside-transition': 'off',
},
ignores: ['**/fixtures', 'test'],
},
{},
)