{
  "rules": {
    "quotemark": [true, "single", "jsx-single", "avoid-escape"],
    "indent": [true, "spaces"],
    "variable-name": [true, "ban-keywords", "check-format"],
    "interface-name": true,
    "eofline": true,
    "curly": true,
    "class-name": true,
    "forin": true,
    "no-duplicate-variable": true,
    "no-eval": true,
    "no-internal-module": true,
    "no-trailing-whitespace": true,
    "no-var-keyword": true,
    "one-line": [true, "check-open-brace", "check-whitespace", "check-else", "check-catch"],
    "semicolon": true,
    "trailing-comma": false,
    "triple-equals": true,
    "use-isnan": true,
    "member-ordering": [true, "public-before-private", "static-before-instance", "variables-before-functions"],
    "no-angle-bracket-type-assertion": true,
    "no-arg": true,
    "no-construct": true,
    "no-constructor-vars": true,
    "no-empty": true,
    "no-invalid-this": true,
    "no-reference": true,
    "no-require-imports": true,
    "no-string-literal": true,
    "no-unreachable": true,
    "no-unused-expression": true,
    "no-unused-variable": [true, "react"],
    "no-use-before-declare": true,
    "no-var-requires": true,
    "radix": true
  }
}
