forked from daizyio/ts-lambda-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
27 lines (27 loc) · 784 Bytes
/
Copy pathtslint.json
File metadata and controls
27 lines (27 loc) · 784 Bytes
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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"array-type": ["array"],
"arrow-parens": ["ban-single-arg-parens"],
"ban-types": ["Function", false],
"member-ordering": ["instance-sandwich"],
"no-console": false,
"ordered-imports": [{
"import-sources-order": "lowercase-last",
"named-imports-order": "lowercase-first"
}],
"prefer-const": false,
"semicolon": ["never"],
"trailing-comma": [{"multiline": "never"}],
"variable-name": ["check-format", "allow-leading-underscore"],
"curly": true
},
"rulesDirectory": [],
"linterOptions": {
"exclude": ["tests/**/*.ts"]
}
}