forked from aws-observability/aws-rum-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
32 lines (32 loc) · 883 Bytes
/
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
{
"extends": ["tslint:recommended", "tslint-config-prettier"],
"linterOptions": {
"exclude": ["node_modules/**"]
},
"rules": {
"array-type": [true, "array"],
"arrow-parens": false,
"arrow-return-shorthand": true,
"import-name": false,
"interface-name": [true, "never-prefix"],
"interface-over-type-literal": false,
"member-access": false,
"max-line-length": [
true,
{
"limit": 120,
"ignore-pattern": "^import |^export {(.*?)}"
}
],
"member-ordering": [
true,
{
"order": "fields-first"
}
],
"no-shadowed-variable": false,
"object-literal-sort-keys": false,
"only-arrow-functions": true,
"ordered-imports": false
}
}