mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 04:09:12 +00:00
35 lines
710 B
JSON
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": []
|
|
}
|