-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
23 lines (23 loc) · 976 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
{
"extends": "tslint:latest",
"rules": {
"no-console": false, // allow some console statements for debugging
"member-access": false, // start without having to write public, private modifiers
"jsx-no-lambda": false, // lambdas in render are bad for performance but this can be annoying during prototyping
"jsx-boolean-value": false, // allow someProp instead of someProp={true}
"no-require-imports": false,
"no-var-requires": false,
"ordered-imports": false,
"no-submodule-imports": false,
"no-consecutive-blank-lines": false,
"quotemark": [true, "single", "jsx-double"],
"trailing-comma": false,
"only-arrow-functions": false,
"prefer-for-of": false,
"no-empty": [2, {"exceptions": "catch"}],
"no-string-literal": false,
"no-this-assignment": false,
"prefer-object-spread": false,
"object-literal-sort-keys": false
}
}