8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d8c8fa commit 058c8b6Copy full SHA for 058c8b6
tslint.json
@@ -1,15 +1,17 @@
1
{
2
"extends": ["tslint:latest", "tslint-config-prettier"],
3
"rules": {
4
+ "class-name": true,
5
+ "curly": true,
6
+ "interface-name": [true, "never-prefix"],
7
"no-string-throw": true,
- "no-unused-expression": true,
8
"no-duplicate-variable": true,
- "curly": true,
- "class-name": true,
9
+ "no-implicit-dependencies": false,
10
+ "no-unused-expression": true,
11
+ "object-literal-sort-keys": false,
12
+ "ordered-imports": false,
13
"semicolon": [true, "never"],
- "triple-equals": true,
- "interface-name": [true, "never-prefix"],
- "object-literal-sort-keys": false
14
+ "triple-equals": true
15
},
16
"defaultSeverity": "warning",
17
"no-submodule-imports": false
0 commit comments