smarttime/tslint.json

18 lines
352 B
JSON
Raw Normal View History

2017-08-15 17:28:23 +00:00
{
2018-11-23 17:29:38 +00:00
"extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
"semicolon": [true, "always"],
"no-console": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"member-ordering": {
"options":{
"order": [
"static-method"
]
}
}
},
"defaultSeverity": "warning"
2017-08-15 17:28:23 +00:00
}