forked from monorepolint/monorepolint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
30 lines (26 loc) · 780 Bytes
/
tslint.json
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
{
"defaultSeverity": "error",
"extends": ["tslint:recommended"],
"jsRules": {},
"rules": {
"file-header": [
true,
"Copyright \\d{4} Palantir Technologies, Inc\\.",
"Copyright 2020 Palantir Technologies, Inc.\n\nLicensed under the MIT license. See LICENSE file in the project root for details.\n"
],
// Add rules
"no-implicit-dependencies": [true, "dev"],
// Disable recommended rules
"interface-name": false,
"object-literal-sort-keys": false,
"array-type": false,
// prettier handles these
"object-literal-key-quotes": false,
"trailing-comma": false,
"arrow-parens": false,
"align": false,
"no-trailing-whitespace": false,
"no-consecutive-blank-lines": false
},
"rulesDirectory": []
}