-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.yml
45 lines (45 loc) · 1019 Bytes
/
tslint.yml
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
# https://palantir.github.io/tslint/rules/
extends:
- tslint:recommended
- prettier
plugins:
- prettier
parserOptions:
ecmaVersion: 9
env:
node: true
es6: true
mocha: true
rules:
no-string-throw: false
no-var-keyword: false
curly: [true, "ignore-same-line"]
class-name: false
prefer-const: false
import-spacing: false
ordered-imports: false
semicolon: [ false, never ]
no-bitwise: false
no-console: false
new-cap: false
strict: false
no-empty-interface: false
ban-types: false
no-string-literal: false
no-use-before-define: false
eol-last: false
quotemark: false
member-access: [true, "no-public"]
trailing-comma: [false, {"multiline": "always", "singleline": "never"}]
arrow-parens: false
no-shadowed-variable: false
no-var-requires: false
object-literal-sort-keys: false
interface-name: false
align: false
no-unused-expression: false
only-arrow-functions: false
variable-name: false
max-line-length: false
jsdoc-format: false
radix: false