Files
firebase-tools/tslint.json
Bryan Kendall d8e0072dd4 typescript utils and add some tests (#1003)
* typescript utils and add some tests

* add check to make sure exported variable is updated

* add missing types

* update utils

* import expect
2018-11-07 14:53:38 -08:00

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"]
}
}