forked from SilverHoodCorp/polar-bookshelf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.yaml
93 lines (72 loc) · 1.92 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
---
extends: "tslint:recommended"
#defaultSeverity: warn
rulesDirectory:
#- path/to/custom/rules/directory/
#- another/path/
rules:
# disabling as intellij won't let me disable this option
max-line-length: false
new-parens: true
no-arg: true
no-bitwise: true
no-conditional-assignment: true
no-consecutive-blank-lines: false
space-before-function-paren: false
no-console:
severity: none
options:
- debug
- info
- log
- time
- timeEnd
- trace
# I think this is generally too strict for us for now.
quotemark: false
# this seems a bit silly / strict but maybe in the future.
object-literal-sort-keys: false
ordered-imports: false
only-arrow-functions: false
object-literal-key-quotes: false
trailing-comma: false
no-trailing-whitespace: false
# options:
# ignore-comments
# can't enable this until we're on typescript everywhere
no-var-requires: false
max-classes-per-file: false
arrow-parens: false
no-namespace: false
radix: false
# member-ordering:
# options:
# order:
# - public-instance-field
# - protected-instance-field
# - private-instance-field
# - public-instance-method
# - protected-instance-method
# - private-instance-method
#
# - public-static-field
# - protected-static-field
# - private-static-field
#
# - public-static-method
# - protected-static-method
# - private-static-method
interface-name: false
no-angle-bracket-type-assertion: false
no-empty-interface: false
member-ordering: false
no-unused-expression: true
no-floating-promises: true
await-promise: true
# this is actually more annoying than not. Shadowed variables can be annoying
# but I find having to rename them more annoying and that these don't actually
# cause bugs in production.
no-shadowed-variable: false
jsRules:
max-line-length:
options: [140]