FoundKey/tslint.json

37 lines
823 B
JSON
Raw Normal View History

2016-12-28 22:49:51 +00:00
{
2017-05-24 11:50:17 +00:00
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
2018-04-26 05:44:23 +00:00
"align": false,
2017-05-24 11:50:17 +00:00
"indent": ["tab"],
"quotemark": ["single"],
"no-var-requires": false,
"no-string-throw": false,
"trailing-comma": [false],
"object-literal-sort-keys": false,
"curly": false,
"no-console": [false],
2017-11-13 09:05:35 +00:00
"no-empty":false,
2017-05-24 11:50:17 +00:00
"ordered-imports": [false],
"arrow-parens": false,
"object-literal-shorthand": false,
2017-10-06 19:30:57 +00:00
"object-literal-key-quotes": false,
2017-05-24 11:50:17 +00:00
"triple-equals": [false],
"no-shadowed-variable": false,
"no-string-literal": false,
"variable-name": [false],
"comment-format": [false],
"interface-over-type-literal": false,
"max-line-length": [false],
2017-10-06 18:36:46 +00:00
"max-classes-per-file": false,
2017-05-24 11:50:17 +00:00
"member-ordering": [false],
"ban-types": [
"Object"
]
},
"rulesDirectory": []
2016-12-28 22:49:51 +00:00
}