aboutsummaryrefslogblamecommitdiffhomepage
path: root/.eslintrc.json
blob: 042254c95aca67a6a98b23bfad954568591f9e75 (plain) (tree)
























                                        
                                   







































                                                         






                                                                                              
 
                                             

                                                       
                                                  




                                                              
                                                                       



                                                            
                                                   
                                                    
                                                     












                                                      
{
  "extends": "standard-with-typescript",
  "rules": {
    "eol-last": [
      "error",
      "always"
    ],
    "indent": "off",
    "no-lone-blocks": "off",
    "no-mixed-operators": "off",
    "max-len": [
      "error",
      {
        "code": 140
      }
    ],
    "array-bracket-spacing": [
      "error",
      "always"
    ],
    "quote-props": [
      "error",
      "consistent-as-needed"
    ],
    "padded-blocks": "off",
    "prefer-regex-literals": "off",
    "no-async-promise-executor": "off",
    "dot-notation": "off",
    "promise/param-names": "off",
    "import/first": "off",
    "operator-linebreak": [
      "error",
      "after",
      {
        "overrides": {
          "?": "before",
          ":": "before"
        }
      }
    ],
    "@typescript-eslint/indent": [
      "error",
      2,
      {
        "SwitchCase": 1,
        "MemberExpression": "off"
      }
    ],
    "@typescript-eslint/consistent-type-assertions": [
      "error",
      {
        "assertionStyle": "as"
      }
    ],
    "@typescript-eslint/array-type": [
      "error",
      {
        "default": "array"
      }
    ],
    "@typescript-eslint/restrict-template-expressions": [
      "off",
      {
        "allowNumber": "true"
      }
    ],
    "@typescript-eslint/no-this-alias": [
      "error",
      {
        "allowDestructuring": true, // Allow `const { props, state } = this`; false by default
        "allowedNames": ["self"] // Allow `const self = this`; `[]` by default
      }
    ],

    "@typescript-eslint/return-await": "off",
    "@typescript-eslint/dot-notation": "off",
    "@typescript-eslint/method-signature-style": "off",
    "@typescript-eslint/no-base-to-string": "off",
    "@typescript-eslint/quotes": "off",
    "@typescript-eslint/no-var-requires": "off",
    "@typescript-eslint/explicit-function-return-type": "off",
    "@typescript-eslint/promise-function-async": "off",
    "@typescript-eslint/no-dynamic-delete": "off",
    "@typescript-eslint/no-unnecessary-boolean-literal-compare": "off",
    "@typescript-eslint/strict-boolean-expressions": "off",
    "@typescript-eslint/consistent-type-definitions": "off",
    "@typescript-eslint/no-misused-promises": "off",
    "@typescript-eslint/no-namespace": "off",
    "@typescript-eslint/no-empty-interface": "off",
    "@typescript-eslint/no-extraneous-class": "off",
    "@typescript-eslint/no-use-before-define": "off",
    // bugged but useful
    "@typescript-eslint/restrict-plus-operands": "off"
  },
  "ignorePatterns": [
    "node_modules/"
  ],
  "parserOptions": {
    "project": [
      "./tsconfig.json",
      "./server/tools/tsconfig.json"
    ]
  }
}