https://github.com/angular/angular
Raw File
Tip revision: b7212f5afeb229f1036a68b8e10e7634f5ab694c authored by Chuck Jazdzewski on 17 March 2017, 02:57:49 UTC
docs: add changelog for 4.0.0-rc.4
Tip revision: b7212f5
tslint.json
{
  "rulesDirectory": [
    "dist/tools/tslint",
    "node_modules/vrsource-tslint-rules/rules",
    "node_modules/tslint-eslint-rules/dist/rules"
  ],
  "rules": {
    "file-header": [true, "Copyright Google Inc\\."],
    "no-console": [true, "log"],
    "no-duplicate-imports": true,
    "no-duplicate-variable": true,
    "no-jasmine-focus": true,
    "no-var-keyword": true,
    "require-internal-with-underscore": true,
    "semicolon": [true],
    "variable-name": [true, "ban-keywords"],
    "no-inner-declarations": [true, "function"]
  }
}
back to top