|
1 | 1 | { |
2 | | - "rulesDirectory": ["./build/tslint-rules"], |
| 2 | + "rulesDirectory": [ |
| 3 | + "./build/tslint-rules" |
| 4 | + ], |
3 | 5 | "linterOptions": { |
4 | | - "exclude": ["src/ipywidgets"] |
| 6 | + "exclude": [ |
| 7 | + "src/ipywidgets" |
| 8 | + ] |
5 | 9 | }, |
6 | | - "extends": ["tslint-eslint-rules", "tslint-microsoft-contrib", "tslint-plugin-prettier", "tslint-config-prettier"], |
| 10 | + "extends": [ |
| 11 | + "tslint-eslint-rules", |
| 12 | + "tslint-microsoft-contrib", |
| 13 | + "tslint-plugin-prettier", |
| 14 | + "tslint-config-prettier" |
| 15 | + ], |
7 | 16 | "rules": { |
8 | 17 | "prettier": true, |
9 | 18 | "messages-must-be-localized": true, |
|
13 | 22 | "non-literal-fs-path": false, |
14 | 23 | "newline-per-chained-call": false, |
15 | 24 | "class-name": true, |
16 | | - "semicolon": [true, "always", "strict-bound-class-methods"], |
| 25 | + "semicolon": [ |
| 26 | + true, |
| 27 | + "always", |
| 28 | + "strict-bound-class-methods" |
| 29 | + ], |
17 | 30 | "triple-equals": true, |
18 | 31 | "no-relative-imports": false, |
19 | 32 | "max-line-length": false, |
20 | 33 | "typedef": false, |
21 | 34 | "no-string-throw": true, |
22 | 35 | "missing-jsdoc": false, |
23 | | - "one-line": [true, "check-catch", "check-finally", "check-else"], |
| 36 | + "one-line": [ |
| 37 | + true, |
| 38 | + "check-catch", |
| 39 | + "check-finally", |
| 40 | + "check-else" |
| 41 | + ], |
24 | 42 | "no-parameter-properties": false, |
25 | 43 | "no-parameter-reassignment": false, |
26 | 44 | "no-reserved-keywords": false, |
|
29 | 47 | "align": false, |
30 | 48 | "linebreak-style": false, |
31 | 49 | "strict-boolean-expressions": false, |
32 | | - "await-promise": [true, "Thenable", "PromiseLike"], |
| 50 | + "await-promise": [ |
| 51 | + true, |
| 52 | + "Thenable", |
| 53 | + "PromiseLike" |
| 54 | + ], |
33 | 55 | "completed-docs": false, |
34 | 56 | "no-unsafe-any": false, |
35 | 57 | "no-backbone-get-set-outside-model": false, |
|
47 | 69 | "no-bitwise": false, |
48 | 70 | "eofline": true, |
49 | 71 | "switch-final-break": false, |
50 | | - "no-implicit-dependencies": ["vscode"], |
| 72 | + "no-implicit-dependencies": [ |
| 73 | + "vscode" |
| 74 | + ], |
51 | 75 | "no-unnecessary-type-assertion": false, |
52 | 76 | "no-submodule-imports": false, |
53 | 77 | "no-redundant-jsdoc": false, |
|
0 commit comments