forked from functionalone/serverless-iam-roles-per-function
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
26 lines (26 loc) · 734 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"no-trailing-whitespace": false,
"quotemark": [false],
"comment-format": [false],
"member-access": false,
"whitespace": [false],
"object-literal-shorthand": false,
"ordered-imports": [false],
"one-line": [false],
"max-line-length": [true, 160],
"only-arrow-functions": [false],
"object-literal-sort-keys": [false],
"array-type": [false],
"variable-name": [false],
"interface-name": [false],
"one-variable-per-declaration": [false],
"no-console": false
},
"rulesDirectory": []
}