angular-cn/tslint.json
Alex Eagle 9f506cd330 chore(lint): remove unused lint checks
Now that we have --noImplicitAny we don't need these checks for explicit types in specific locations.

Also re-enable the check to disallow keywords as variable names.
2016-06-09 11:34:53 -07:00

9 lines
178 B
JSON

{
"rules": {
"requireInternalWithUnderscore": true,
"duplicateModuleImport": true,
"semicolon": true,
"variable-name": [true, "ban-keywords"]
}
}