{
  "extends": [
    "tslint:recommended"
  ],
  "rulesDirectory": [
    "node_modules/codelyzer",
    "node_modules/rxjs-tslint"
  ],
  "rules": {
    "component-class-suffix": true,
    "directive-class-suffix": true,
    "indent": [
      true,
      "spaces",
      2
    ],
    "interface-name": false,
    "max-line-length": [
      true,
      100
    ],
    "no-access-missing-member": false,
    "no-attribute-decorator": true,
    "no-console": [
      true,
      "time",
      "timeEnd",
      "trace"
    ],
    "no-forward-ref": true,
    "no-input-rename": true,
    "no-output-rename": true,
    "no-reference": false,
    "no-string-literal": false,
    "object-literal-sort-keys": false,
    "ordered-imports": false,
    "pipe-naming": [
      "camelCase",
      "my"
    ],
    "quotemark": [
      true,
      "single",
      "avoid-escape"
    ],
    "trailing-comma": [
      false,
      {
        "multiline": "always",
        "singleline": "never"
      }
    ],
    "no-host-metadata-property": true,
    "no-inputs-metadata-property": true,
    "no-outputs-metadata-property": true,
    "use-pipe-transform-interface": true,
    "variable-name": [
      true,
      "allow-leading-underscore",
      "ban-keywords",
      "check-format",
      "allow-pascal-case"
    ]
  }
}