-
-
Notifications
You must be signed in to change notification settings - Fork 228
/
tslint.yml
45 lines (45 loc) · 954 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
---
defaultSeverity: error
extends:
- tslint:recommended
- tslint-react
- tslint-plugin-prettier
- tslint-config-prettier
linterOptions:
format: stylish
rules:
curly: true
interface-name:
options:
- never-prefix
member-access: false
member-ordering: false
object-literal-sort-keys: false
ordered-imports:
options:
import-sources-order: case-insensitive
module-source-path: full
named-imports-order: case-insensitive
import-blacklist: [true, 'lodash']
prettier: true
no-namespace: false
variable-name:
options:
- check-format
- allow-leading-underscore
- allow-pascal-case
- ban-keywords
array-type:
options:
- array
no-console:
options:
- log
switch-default: true
max-classes-per-file: false
await-promise: true
ban-comma-operator: true
prefer-object-spread: true
no-default-export: true
jsx-no-lambda: false
jsx-key: false