forked from MrVauxs/pf2e-graphics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.js
45 lines (41 loc) · 926 Bytes
/
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
import antfu from '@antfu/eslint-config';
export default antfu(
{
formatters: true,
svelte: true,
stylistic: {
indent: 'tab',
quotes: 'single',
semi: true,
},
rules: {
'import/order': 'off',
'sort-imports': 'off',
'unicorn/consistent-function-scoping': 'off',
'svelte/html-self-closing': [
'error',
{
void: 'always', // or "never" or "ignore"
normal: 'never',
component: 'always',
svelte: 'always',
},
],
'svelte/prefer-style-directive': 'warn',
'antfu/consistent-list-newline': 'warn',
'antfu/if-newline': 'off',
'import/no-mutable-exports': 'off',
'style/brace-style': ['error', '1tbs', { allowSingleLine: true }],
'unused-imports/no-unused-vars': 'warn',
'node/prefer-global/process': 'off',
'svelte/valid-compile': 'warn',
},
ignores: [],
},
{
files: ['**/*.svelte'],
rules: {
'no-self-assign': 'off',
},
},
);