-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtslint.yaml
40 lines (40 loc) · 1.03 KB
/
tslint.yaml
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
---
extends: "tslint:recommended"
linterOptions:
exclude:
- node_modules
rules:
allow-js: false
max-line-length: false
object-literal-sort-keys: false
arrow-parens: false
no-console: false
prefer-const: false
quotemark: false
variable-name: false
member-access: false
member-ordering: false
prefer-for-of: false
one-variable-per-declaration: false
radix: false
no-shadowed-variable: false
trailing-comma: false
array-type: false
typedef-whitespace: false
whitespace: false
interface-over-type-literal: false
max-classes-per-file: false
interface-name: false
object-literal-key-quotes: false
no-empty-interface: false
no-reference: false
no-unused-expression: true
no-floating-promises: true
ordered-imports: false
align: false
object-literal-shorthand: true
only-arrow-functions: true
no-bitwise: false # may enable in the future
no-namespace: false # can consider later
jsdoc-format: false # add back later
...