smartinteract/tslint.json

18 lines
352 B
JSON
Raw Normal View History

2016-11-20 00:11:22 +00:00
{
2020-02-07 16:36:35 +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"
]
}
2018-07-25 14:58:51 +00:00
}
2020-02-07 16:36:35 +00:00
},
"defaultSeverity": "warning"
}