-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.cjs
56 lines (56 loc) · 1.13 KB
/
.eslintrc.cjs
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
module.exports = {
extends: ['@antfu/eslint-config-ts', 'plugin:prettier/recommended'],
rules: {
'@typescript-eslint/no-unused-vars': [
'warn',
{
argsIgnorePattern: '^_',
},
],
'@typescript-eslint/brace-style': [
'error',
'1tbs',
{
allowSingleLine: true,
},
],
'@typescript-eslint/indent': 'off',
'arrow-parens': ['error', 'always'],
'antfu/if-newline': 'off',
'quotes': [
'error',
'single',
{
avoidEscape: true,
},
],
'max-len': [
'error',
{
code: 120,
ignoreUrls: true,
ignoreStrings: true,
ignoreTemplateLiterals: true,
ignoreRegExpLiterals: true,
},
],
'import/no-unresolved': [
'error',
{
ignore: ['vscode'],
},
],
'no-restricted-imports': [
'error',
{
paths: [
{
name: '.',
message:
'Do not import from barrel files (index.{ts,js}) from within the same directory to avoid circular dependencies.',
},
],
},
],
},
}