mirror of
https://github.com/zhigang1992/devhub.git
synced 2026-05-29 16:36:42 +08:00
27 lines
632 B
JSON
27 lines
632 B
JSON
{
|
|
"defaultSeverity": "error",
|
|
"extends": ["tslint:recommended", "tslint-react", "tslint-config-airbnb"],
|
|
"jsRules": {},
|
|
"rules": {
|
|
"curly": false,
|
|
"import-name": false,
|
|
"jsx-boolean-value": false,
|
|
"jsx-no-multiline-js": false,
|
|
"member-access": false,
|
|
"no-empty-interface": false,
|
|
"semicolon": false,
|
|
"strict-boolean-expressions": false,
|
|
"ter-arrow-parens": false,
|
|
"ter-indent": false,
|
|
"variable-name": [
|
|
true,
|
|
"allow-leading-underscore",
|
|
"allow-pascal-case",
|
|
"ban-keywords",
|
|
"check-format"
|
|
],
|
|
"quotemark": false
|
|
},
|
|
"rulesDirectory": []
|
|
}
|