-
Notifications
You must be signed in to change notification settings - Fork 4
/
tslint.json
44 lines (44 loc) · 1.3 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
/*
* Possible values:
* - the name of a built-in config
* - the name of an NPM module which has a "main" file that exports a config object
* - a relative path to a JSON file
*/
"extends": [
"tslint:latest"
],
"rules": {
/*
* Any rules specified here will override those from the base config we are extending
*/
"max-line-length": [false],
"max-classes-per-file": false,
"no-var-requires": false,
"trailing-comma": [false],
"object-literal-sort-keys": false,
"ordered-imports": false,
"no-console": [false],
"no-unused-new": false,
"triple-equals": false,
"one-line": [false, "check-catch", "check-finally", "check-else"],
"only-arrow-functions": [false],
"quotemark": [true, "single", "jsx-double"],
"forin": false,
"variable-name": [false],
"no-empty": false,
"no-empty-interface": false,
"no-implicit-dependencies": false,
"no-string-literal": false,
"no-submodule-imports": false,
"object-literal-shorthand": false,
"member-access": [false],
"prefer-conditional-expression": false,
"prefer-const": false,
"prefer-for-of": false,
"no-unused-expression": [false],
"member-ordering": [false],
"prefer-object-spread": false,
"eofline": false
}
}