mirror of
https://github.com/zhigang1992/firebase-tools.git
synced 2026-01-12 22:47:24 +08:00
* typescript utils and add some tests * add check to make sure exported variable is updated * add missing types * update utils * import expect
19 lines
542 B
JSON
19 lines
542 B
JSON
{
|
|
"defaultSeverity": "error",
|
|
"extends": ["tslint:recommended", "tslint-no-unused-expression-chai"],
|
|
"jsRules": {},
|
|
"rules": {
|
|
"arrow-parens": true,
|
|
"interface-name": false,
|
|
"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"]
|
|
}
|
|
}
|