forked from jfrog/jfrog-azure-devops-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
22 lines (22 loc) · 869 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
{
"extends": ["tslint:recommended", "tslint-config-prettier"],
"rules": {
"variable-name": [true, "allow-snake-case", "allow-leading-underscore"],
"max-line-length": [true, { "limit": 150, "ignore-pattern": "`.*?`|'.*?'|\".*?\"" }],
"max-classes-per-file": false,
"no-floating-promises": true,
"no-console": false,
"no-string-throw": true,
"no-unused-expression": true,
"no-duplicate-variable": true,
"curly": true,
"class-name": true,
"semicolon": [true, "always"],
"triple-equals": true,
"typedef": [true, "call-signature", "arrow-call-signature", "parameter", "property-declaration", "variable-declaration", "member-variable-declaration"]
},
"defaultSeverity": "warning",
"linterOptions": {
"exclude": ["*.json", "**/*.json"]
}
}