-
Notifications
You must be signed in to change notification settings - Fork 4k
/
eslintrc.js
165 lines (141 loc) · 5.68 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/**
* JavaScript and generic rules:
*
* https://eslint.org/docs/rules/
*
* TypeScript-specific rules (including migrations from TSlint), see here:
*
* https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/ROADMAP.md
*/
module.exports = {
env: {
jest: true,
node: true
},
plugins: [
'@typescript-eslint',
'import'
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: '2018',
sourceType: 'module',
project: './tsconfig.json',
},
extends: [
'plugin:import/typescript'
],
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx']
},
'import/resolver': {
node: {},
typescript: {
directory: './tsconfig.json'
}
}
},
ignorePatterns: [ '*.js', '*.d.ts', 'node_modules/', '*.generated.ts' ],
rules: {
// Require use of the `import { foo } from 'bar';` form instead of `import foo = require('bar');`
'@typescript-eslint/no-require-imports': [ 'error' ],
'@typescript-eslint/indent': [ 'error', 2 ],
// Style
'quotes': [ 'error', 'single', { avoidEscape: true } ],
'comma-dangle': [ 'error', 'always-multiline' ], // ensures clean diffs, see https://medium.com/@nikgraf/why-you-should-enforce-dangling-commas-for-multiline-statements-d034c98e36f8
// Require all imported dependencies are actually declared in package.json
'import/no-extraneous-dependencies': [
'error',
{
devDependencies: [ // Only allow importing devDependencies from:
'**/build-tools/**', // --> Build tools
'**/test/**' // --> Unit tests
],
optionalDependencies: false, // Disallow importing optional dependencies (those shouldn't be in use in the project)
peerDependencies: false // Disallow importing peer dependencies (that aren't also direct dependencies)
}
],
// Require all imported libraries actually resolve (!!required for import/no-extraneous-dependencies to work!!)
'import/no-unresolved': [ 'error' ],
// Require an ordering on all imports -- unfortunately a different ordering than TSLint used to
// enforce, but there are no compatible ESLint rules as far as I can tell :(
//
// WARNING for now, otherwise this will mess up all open PRs. Make it into an error after a transitionary period.
'import/order': ['warn', {
groups: ['builtin', 'external'],
alphabetize: { order: 'asc', caseInsensitive: true },
}],
// Cannot import from the same module twice
'no-duplicate-imports': ['error'],
// Cannot shadow names
'no-shadow': ['error'],
// Required spacing in property declarations (copied from TSLint, defaults are good)
'key-spacing': ['error'],
// Require semicolons
'semi': ['error', 'always'],
// Don't unnecessarily quote properties
'quote-props': ['error', 'consistent-as-needed'],
// No multiple empty lines
'no-multiple-empty-lines': ['error'],
// Max line lengths
'max-len': ['error', {
code: 150,
ignoreUrls: true, // Most common reason to disable it
ignoreStrings: true, // These are not fantastic but necessary for error messages
ignoreTemplateLiterals: true,
ignoreComments: true,
ignoreRegExpLiterals: true,
}],
// One of the easiest mistakes to make
'@typescript-eslint/no-floating-promises': ['error'],
// Don't leave log statements littering the premises!
'no-console': ['error'],
// Useless diff results
'no-trailing-spaces': ['error'],
// Must use foo.bar instead of foo['bar'] if possible
'dot-notation': ['error'],
// Must use 'import' statements (disabled because it doesn't add a lot over no-require-imports)
// '@typescript-eslint/no-var-requires': ['error'],
// Are you sure | is not a typo for || ?
'no-bitwise': ['error'],
// Oh ho ho naming. Everyone's favorite topic!
// FIXME: there's no way to do this properly. The proposed tslint replacement
// works very differently, also checking names in object literals, which we use all over the
// place for configs, mockfs, nodeunit tests, etc.
//
// The maintainer does not want to change behavior.
// https://github.com/typescript-eslint/typescript-eslint/issues/1483
//
// There is no good replacement for tslint's name checking, currently. We will have to make do
// with jsii's validation.
/*
'@typescript-eslint/naming-convention': ['error',
// We could maybe be more specific in a number of these but I didn't want to
// spend too much effort. Knock yourself out if you feel like it.
{ selector: 'enumMember', format: ['PascalCase', 'UPPER_CASE'] },
{ selector: 'variableLike', format: ['camelCase', 'UPPER_CASE'], leadingUnderscore: 'allow' },
{ selector: 'typeLike', format: ['PascalCase'], leadingUnderscore: 'allow' },
{ selector: 'memberLike', format: ['camelCase', 'PascalCase', 'UPPER_CASE'], leadingUnderscore: 'allow' },
// FIXME: there's no way to disable name checking in object literals. Maintainer won't have it
// https://github.com/typescript-eslint/typescript-eslint/issues/1483
],
*/
// Member ordering
'@typescript-eslint/member-ordering': ['error', {
default: [
"public-static-field",
"public-static-method",
"protected-static-field",
"protected-static-method",
"private-static-field",
"private-static-method",
"field",
// Constructors
"constructor", // = ["public-constructor", "protected-constructor", "private-constructor"]
// Methods
"method",
]
}],
},
}