-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
39 lines (39 loc) · 958 Bytes
/
.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
module.exports = {
extends: [
'airbnb-base',
'airbnb-typescript/base',
'plugin:@typescript-eslint/recommended',
'prettier',
],
plugins: ['import', 'unused-imports', '@typescript-eslint'],
parser: '@typescript-eslint/parser',
env: {
browser: true,
es2022: true,
node: true,
},
parserOptions: {
ecmaVersion: 'latest',
project: './tsconfig.json',
},
rules: {
'@typescript-eslint/no-unused-vars': 'off',
'import/order': [
'error',
{
groups: ['builtin', 'external', 'internal', 'parent', 'sibling', 'index', 'object'],
'newlines-between': 'always',
alphabetize: { order: 'asc', caseInsensitive: true },
},
],
'import/prefer-default-export': 'off',
'unused-imports/no-unused-imports': 'error',
'no-underscore-dangle': 'off',
},
ignorePatterns: ['vite.config.ts'],
settings: {
'import/resolver': {
typescript: {},
},
},
};