{
  "extends": [
    "tslint:latest"
    // "tslint-config-prettier" 
    // "tslint-immutable"
  ],
  "rules": {
    "interface-name": [true, "never-prefix"],
    // TODO: allow devDependencies only in **/*.spec.ts files:
    // waiting on https://github.com/palantir/tslint/pull/3708
    "no-implicit-dependencies": [true, "dev"],

    
    "indent": [true, "spaces"],
    "max-line-length": [true, 150],
    "no-var-keyword": true,
    "no-require-imports": true,
    "semicolon": [true, "never"],
    "no-duplicate-variable": true,
    "class-name": true,
    "align": [true, "parameters"],
    "curly": true,
    "no-console": false,

    "member-ordering": false,
    "ordered-imports": false,
    "quotemark": [true, "single", "avoid-escape"],
    "arrow-parens": false,
    "variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
    "object-literal-sort-keys": false,
    "forin": false,
    "no-consecutive-blank-lines": false,
    "no-trailing-whitespace": false,
    "no-bitwise":false
  }
}
