This repository has been archived by the owner on Apr 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
75 lines (74 loc) · 1.74 KB
/
.eslintrc.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
const prettierConf = require('./prettier.config');
module.exports = {
env: {
browser: true,
es6: true,
node: true,
},
extends: [
'airbnb-base',
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'prettier',
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
tw: true,
},
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2020,
ecmaFeatures: {
classes: true,
impliedStrict: true,
jsx: true,
},
sourceType: 'module',
},
plugins: ['prettier', '@typescript-eslint'],
rules: {
'id-length': [
2,
{
exceptions: ['_', 'a', 'b', 'c', 'i', 'x', 'y', 'z'],
},
],
'import/extensions': 0,
'import/no-unresolved': [2, { caseSensitive: false }],
'import/prefer-default-export': 0,
'no-await-in-loop': 0,
'no-console': [
'error',
{
allow: ['error', 'log'],
},
],
'no-case-declarations': 0,
'no-nested-ternary': 0,
'no-restricted-syntax': [
'error',
'FunctionExpression',
'WithStatement',
"BinaryExpression[operator='in']",
],
'no-shadow': 0,
'no-throw-literal': 0,
'no-unused-vars': 0,
'prettier/prettier': ['error', prettierConf],
'@typescript-eslint/explicit-function-return-type': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
'@typescript-eslint/interface-name-prefix': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/no-shadow': ['error'],
'@typescript-eslint/no-unused-vars': 'error',
'@typescript-eslint/no-useless-constructor': 0,
},
settings: {
'import/resolver': {
node: {
extensions: ['.js', '.ts'],
},
},
},
};