aboutsummaryrefslogtreecommitdiffhomepage
path: root/.eslintrc.json
blob: 4e80ff2246f657b3907292e4f489e7116e023488 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
  "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"
        }
      }
    ],
    "quotes": "off",
    "@typescript-eslint/indent": [
      "error",
      2,
      {
        "SwitchCase": 1,
        "MemberExpression": "off",
        // https://github.com/eslint/eslint/issues/15299
        "ignoredNodes": ["PropertyDefinition"]
      }
    ],
    "@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": [
        "error",
        "single",
        {
            "avoidEscape": true,
            "allowTemplateLiterals": true
        }
    ],
    "@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",

    "require-await": "off",
    "@typescript-eslint/require-await": "error",

    // bugged but useful
    "@typescript-eslint/restrict-plus-operands": "off",

    // Requires strictNullChecks
    "@typescript-eslint/prefer-nullish-coalescing": "off",
    "@typescript-eslint/consistent-type-imports": "off",
    "@typescript-eslint/consistent-indexed-object-style": "off",
    "@typescript-eslint/no-confusing-void-expression": "off",
    "@typescript-eslint/consistent-type-exports": "off",
    "@typescript-eslint/key-spacing": "off",

    "@typescript-eslint/ban-types": [
      "error",
      {
        "types": {
          "{}": false,
          "Function": false
        },
        "extendDefaults": true
      }
    ]
  },
  "ignorePatterns": [
    "node_modules/",
    "server/tests/fixtures"
  ],
  "parserOptions": {
    "EXPERIMENTAL_useSourceOfProjectReferenceRedirect": true,
    "project": [
      "./tsconfig.json",
      "./shared/tsconfig.json",
      "./scripts/tsconfig.json",
      "./server/tsconfig.json",
      "./server/tools/tsconfig.json",
      "./packages/peertube-runner/tsconfig.json"
    ]
  }
}