first commit
This commit is contained in:
42
tslint.json
Normal file
42
tslint.json
Normal file
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"defaultSeverity": "error",
|
||||
"extends": [
|
||||
"tslint:recommended"
|
||||
],
|
||||
"jsRules": {},
|
||||
"rules": {
|
||||
"one-line": false,
|
||||
"no-empty": false,
|
||||
"no-console": false,
|
||||
"indent": [true, "tabs"],
|
||||
"object-literal-shorthand": false,
|
||||
"quotemark": [true, "single"],
|
||||
"prefer-const": false,
|
||||
"eofline": false,
|
||||
"max-line-length": false,
|
||||
"no-trailing-whitespace": false,
|
||||
"ordered-imports": false,
|
||||
"import-spacing": false,
|
||||
"trailing-comma": false,
|
||||
"curly": false,
|
||||
"object-literal-sort-keys": false,
|
||||
"object-literal-key-quotes": false,
|
||||
"variable-name": false,
|
||||
"typedef": [
|
||||
true,
|
||||
"call-signature",
|
||||
"parameter",
|
||||
"property-declaration",
|
||||
"variable-declaration-ignore-function",
|
||||
"member-variable-declaration",
|
||||
"object-destructuring",
|
||||
"array-destructuring"
|
||||
]
|
||||
},
|
||||
"linterOptions": {
|
||||
"exclude": [
|
||||
"build"
|
||||
]
|
||||
},
|
||||
"rulesDirectory": []
|
||||
}
|
||||
Reference in New Issue
Block a user