-
Notifications
You must be signed in to change notification settings - Fork 28
/
eslint.config.js
79 lines (78 loc) · 2.56 KB
/
eslint.config.js
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import antfu from '@antfu/eslint-config'
export default antfu({
vue: true,
}, [
{
rules: {
'test/prefer-lowercase-title': 'off',
'sort-imports': 'off', // Should be 'error'
'import/order': ['error', {
'newlines-between': 'always',
groups: ['builtin', 'external', 'internal', 'parent', 'sibling', 'index'],
}],
'antfu/top-level-function': 'off', // Should be 'error'
'style/quote-props': ['error', 'as-needed'], // Should be ['error', 'consistent-as-needed']
'vue/quote-props': ['error', 'as-needed'], // Should be ['error', 'consistent-as-needed']
'ts/consistent-type-definitions': 'off', // Should be 'on'
'style/arrow-parens': 'off', // Should be ['error', 'as-needed']
'style/operator-linebreak': ['error', 'after', { overrides: { '?': 'before', ':': 'before' } }],
'style/max-statements-per-line': 'off', // Should be 'error'
'vue/no-irregular-whitespace': 'warn',
'no-irregular-whitespace': 'warn',
'perfectionist/sort-imports': 'off', // import/order is better
'perfectionist/sort-exports': 'off', // Think about it
'style/space-before-function-paren': ['error', 'always'],
'style/brace-style': ['error', '1tbs', { allowSingleLine: true }],
curly: ['error', 'all'],
'ts/ban-ts-comment': ['error', { 'ts-ignore': 'allow-with-description' }],
'comma-dangle': [
'error',
'always-multiline',
],
'vue/max-attributes-per-line': [
'error',
{
singleline: {
max: 1,
},
multiline: {
max: 1,
},
},
],
'style/spaced-comment': [
'error',
'always',
{
markers: [
'#region',
'#endregion',
'/',
],
},
],
},
},
{
files: ['*.stories.@(ts|tsx|js|jsx|mjs|cjs)', '*.story.@(ts|tsx|js|jsx|mjs|cjs)'],
rules: {
'react-hooks/rules-of-hooks': 'off',
'import/no-anonymous-default-export': 'off',
'storybook/await-interactions': 'error',
'storybook/context-in-play-function': 'error',
'storybook/default-exports': 'error',
'storybook/hierarchy-separator': 'warn',
'storybook/no-redundant-story-name': 'warn',
'storybook/prefer-pascal-case': 'warn',
'storybook/story-exports': 'error',
'storybook/use-storybook-expect': 'error',
'storybook/use-storybook-testing-library': 'error',
},
},
{
files: ['ci/**/*.mjs'],
rules: {
'antfu/no-top-level-await': 'off',
},
},
])