smartopen/tslint.json

18 lines
352 B
JSON
Raw Normal View History

2017-03-12 20:13:09 +00:00
{
2019-04-16 06:26:16 +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-03-12 20:13:09 +00:00
}