mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
25 lines
601 B
JSON
25 lines
601 B
JSON
{
|
|
"extends": ["tslint-ionic-rules/strict"],
|
|
"linterOptions": {
|
|
"exclude": [
|
|
"**/*.spec.ts",
|
|
"**/*.spec.tsx"
|
|
]
|
|
},
|
|
"rules": {
|
|
"no-conditional-assignment": false,
|
|
"no-non-null-assertion": false,
|
|
"no-unnecessary-type-assertion": false,
|
|
"no-import-side-effect": false,
|
|
"trailing-comma": false,
|
|
"no-null-keyword": false,
|
|
"no-console": false,
|
|
"no-unbound-method": true,
|
|
"no-floating-promises": false,
|
|
"no-invalid-template-strings": true,
|
|
"ban-export-const-enum": true,
|
|
"only-arrow-functions": true,
|
|
"prefer-for-of": false
|
|
}
|
|
}
|