smartshell/tslint.json

18 lines
352 B
JSON
Raw Normal View History

2017-03-10 19:14:40 +00:00
{
2018-10-28 18:12:15 +00:00
"extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
"semicolon": [true, "always"],
"no-console": false,
"ordered-imports": false,
2018-11-26 16:55:15 +00:00
"object-literal-sort-keys": false,
"member-ordering": {
"options":{
"order": [
"static-method"
]
}
}
2018-10-28 18:12:15 +00:00
},
"defaultSeverity": "warning"
2017-03-10 19:14:40 +00:00
}