mirror of
https://github.com/zhigang1992/firebase-tools.git
synced 2026-01-12 09:04:01 +08:00
21 lines
638 B
JSON
21 lines
638 B
JSON
{
|
|
"defaultSeverity": "error",
|
|
"extends": ["tslint:recommended", "tslint-no-unused-expression-chai"],
|
|
"jsRules": {},
|
|
"rules": {
|
|
"arrow-parens": true,
|
|
"interface-name": false,
|
|
"member-access": [true, "no-public"],
|
|
"object-literal-key-quotes": [true, "as-needed"],
|
|
"object-literal-sort-keys": false,
|
|
"ordered-imports": [true, { "import-sources-order": "any" }],
|
|
"prettier": true,
|
|
"trailing-comma": [true, { "functions": "never" }],
|
|
"typedef": [true, "call-signature"]
|
|
},
|
|
"rulesDirectory": ["tslint-plugin-prettier"],
|
|
"linterOptions": {
|
|
"exclude": ["**/node_modules/**", "**/*.js"]
|
|
}
|
|
}
|