forked from Oky-period-tracker/periodtracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
51 lines (51 loc) · 1.34 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
45
46
47
48
49
50
51
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-react",
"tslint-config-airbnb",
"tslint-config-prettier"
],
"jsRules": {},
"rules": {
"curly": false,
"function-name": false,
"import-name": false,
"interface-name": false,
"jsx-boolean-value": false,
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"member-access": false,
"member-ordering": false,
"no-console": [true, "debug", "dir", "log", "trace", "warn"],
"no-empty-interface": false,
"no-unused-expression": [true, "allow-fast-null-checks"],
"no-floating-promises": true,
"no-increment-decrement": false,
"no-namespace": false,
"no-reference": false,
"no-this-assignment": [
true,
{ "allowed-names": ["^self$"], "allow-destructuring": true }
],
"no-unused-variable": true,
"object-literal-sort-keys": false,
"object-shorthand-properties-first": false,
"ordered-imports": false,
"prefer-array-literal": false,
"prefer-template": false,
"semicolon": false,
"strict-boolean-expressions": false,
"ter-arrow-parens": false,
"ter-indent": false,
"variable-name": [
true,
"allow-leading-underscore",
"allow-pascal-case",
"ban-keywords",
"check-format"
],
"quotemark": false
},
"rulesDirectory": []
}