https://github.com/angular/angular
Revision b31c8b6063009324ee79e814d08304eeb641ade7 authored by George Kalpakas on 27 August 2018, 13:45:26 UTC, committed by Kara Erickson on 26 September 2018, 22:26:19 UTC
1 parent 897261e
Raw File
Tip revision: b31c8b6063009324ee79e814d08304eeb641ade7 authored by George Kalpakas on 27 August 2018, 13:45:26 UTC
test(docs-infra): fix test for preview server's `BuildCleaner` completing prematurely (#25671)
Tip revision: b31c8b6
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,
    "rollup-config": true,
    "semicolon": [
      true
    ],
    "variable-name": [
      true,
      "ban-keywords"
    ],
    "no-inner-declarations": [
      true,
      "function"
    ],
    "no-debugger": true
  },
  "jsRules": {
    "file-header": [
      true,
      "Copyright Google Inc\\."
    ],
    "no-console": [
      true,
      "log"
    ],
    "no-duplicate-imports": true,
    "no-duplicate-variable": true,
    "no-jasmine-focus": true,
    "require-internal-with-underscore": true,
    "semicolon": [
      true
    ],
    "variable-name": [
      true,
      "ban-keywords"
    ],
    "no-inner-declarations": [
      true,
      "function"
    ]
  }
}
back to top