fix(core): update

This commit is contained in:
2021-05-16 12:16:35 +00:00
parent af5bb4b3b5
commit 580bf9027b
19 changed files with 11822 additions and 345 deletions

View File

@@ -1,3 +1,17 @@
{
"extends": "tslint-config-standard"
"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"
}