Files
webawesome/tslint.json
2020-01-03 22:46:15 -05:00

35 lines
710 B
JSON

{
"defaultSeverity": "error",
"extends": ["tslint-ionic-rules/strict", "tslint-stencil/default"],
"linterOptions": {
"exclude": ["**/*.spec.ts", "**/*.spec.tsx"]
},
"jsRules": {},
"rules": {
"component-member-order": [
true,
{
"order": [
"own-prop",
"element",
"state",
"watched-state",
"internal-prop",
"prop",
"watched-prop",
"event",
"lifecycle",
"listen",
"method",
"own-method",
"stencil-method"
],
"alphabetical": false
}
],
"trailing-comma": false,
"no-console": false
},
"rulesDirectory": []
}