https://github.com/angular/angular
Raw File
Tip revision: 9a9a7ac7b523cce7fa9d9def0201c75cb935ea6d authored by Alex Rickabaugh on 30 November 2016, 23:18:38 UTC
docs(changelog): add changelog for 2.2.4
Tip revision: 9a9a7ac
tslint.json
{
  "rulesDirectory": [
    "dist/tools/tslint",
    "node_modules/vrsource-tslint-rules/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"]
  }
}
back to top