-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
67 lines (67 loc) · 1.61 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
module.exports = {
env: {
browser: true,
es6: true,
node: true,
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'prettier',
'airbnb-base',
'airbnb-typescript/base',
'plugin:prettier/recommended',
'typestrict',
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
project: './tsconfig.json',
},
plugins: ['@typescript-eslint', 'prettier'],
rules: {
'prettier/prettier': 2,
'consistent-return': 0,
'max-classes-per-file': 0,
'import/prefer-default-export': 0,
'@typescript-eslint/naming-convention': [
'error',
// variableLike - matches the same as variable, function and parameter
{
selector: 'variableLike',
format: ['camelCase', 'PascalCase', 'UPPER_CASE'],
leadingUnderscore: 'allow',
trailingUnderscore: 'allow'
},
// typeLike - matches the same as class, interface, typeAlias, enum, typeParameter
{
selector: 'typeLike',
format: ['PascalCase'],
},
],
//ignore extensions for importing files with .js and .ts extensions
'import/extensions': [
'error',
'ignorePackages',
{
js: 'never',
ts: 'never',
},
],
},
settings: {
'import/resolver': {
node: {
extensions: ['.js', '.ts'],
moduleDirectory: ['src', 'node_modules'],
},
project: './tsconfig.json',
},
},
};