forked from serverless/serverless-plugin-typescript
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtslint.json
More file actions
26 lines (26 loc) · 702 Bytes
/
tslint.json
File metadata and controls
26 lines (26 loc) · 702 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"semicolon": [true, "never"],
"quotemark": [true, "single"],
"ordered-imports": false,
"member-access": false,
"arrow-parens": false,
"max-line-length": false,
"no-console": false,
"object-literal-sort-keys": false,
"member-ordering": false,
"eofline": false,
"trailing-comma": false,
"ban-types": false,
"interface-name": false,
"forin": false,
"no-empty-interface": false,
"no-namespace": [true, "allow-declarations"]
},
"rulesDirectory": []
}