{
  /*
 * Possible values:
 * - the name of a built-in config
 * - the name of an NPM module which has a "main" file that exports a config object
 * - a relative path to a JSON file
 */
  "extends": [
    "tslint:latest"
  ],
  "rules": {
    /*
    * Any rules specified here will override those from the base config we are extending
    */
    "one-line": [
      true
    ],
    "max-line-length": [
      false
    ],
    "ordered-imports": [
      false
    ],
    "member-ordering": [
      false,
      {
        "order": "fields-first"
      }
    ],
    "switch-default": false,
    "no-shadowed-variable": false,
    "curly": false,
    "arrow-parens": false,
    "no-empty": false,
    "no-bitwise": false,
    "object-literal-sort-keys": false,
    "triple-equals": [
      false
    ],
    "max-classes-per-file": [
      false
    ],
    "comment-format": [
      false,
      "check-space",
      "check-lowercase"
    ],
    "align": [
      true,
      "statements"
    ],
    "object-literal-shorthand": false,
    "no-string-literal": false,
    "no-var-requires": false,
    "trailing-comma": [
      false,
      {
        "multiline": "always",
        "singleline": "never"
      }
    ],
    "whitespace": [
      false,
      "check-typecast"
    ],
    "forin": false,
    "no-submodule-imports": false,
    "no-implicit-dependencies": false
  },
  "rulesDirectory": [
    /*
 * A list of relative or absolute paths to directories that contain custom rules.
 * See the Custom Rules documentation below for more details.
 */
  ]
}