forked from Ff00ff/mammoth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
33 lines (33 loc) · 1.24 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
{
"extends": ["tslint:latest", "tslint-config-airbnb", "tslint-config-prettier"],
"rules": {
"array-type": [true, "array"],
"variable-name": [true, "check-format", "allow-leading-underscore", "allow-pascal-case"],
"import-name": false,
"ter-arrow-parens": [true, "as-needed"],
"member-ordering": false,
"member-access": [true, "no-public"],
"only-arrow-functions": true,
"prefer-for-of": true,
"prefer-conditional-expression": false,
"unified-signatures": true,
"arrow-return-shorthand": [true, "multiline"],
"interface-over-type-literal": true,
"prefer-method-signature": true,
"max-classes-per-file": false,
"object-shorthand-properties-first": false,
"no-unused-expression": [true, "allow-tagged-template", "allow-fast-null-checks"],
"no-submodule-imports": [true],
"no-var-requires": [false],
"strict-boolean-expressions": false,
"interface-name": [true, "never-prefix"],
"object-literal-sort-keys": [false],
"no-else-after-return": false,
"no-shadowed-variable": false,
"no-increment-decrement": false,
"ordered-imports": false,
"no-implicit-dependencies": [true, "dev"],
"arrow-return-shorthand": false,
"no-object-literal-type-assertion": false
}
}