]> Untitled Git - lemmy.git/blob - api_tests/.eslintrc.json
Revert "Attempt to fix CI building wrong commits (#3830)"
[lemmy.git] / api_tests / .eslintrc.json
1 {
2   "root": true,
3   "env": {
4     "browser": true
5   },
6   "plugins": ["@typescript-eslint"],
7   "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
8   "parser": "@typescript-eslint/parser",
9   "parserOptions": {
10     "project": "./tsconfig.json",
11     "warnOnUnsupportedTypeScriptVersion": false
12   },
13   "rules": {
14     "@typescript-eslint/ban-ts-comment": 0,
15     "@typescript-eslint/no-explicit-any": 0,
16     "@typescript-eslint/explicit-module-boundary-types": 0,
17     "arrow-body-style": 0,
18     "curly": 0,
19     "eol-last": 0,
20     "eqeqeq": 0,
21     "func-style": 0,
22     "import/no-duplicates": 0,
23     "max-statements": 0,
24     "max-params": 0,
25     "new-cap": 0,
26     "no-console": 0,
27     "no-duplicate-imports": 0,
28     "no-extra-parens": 0,
29     "no-return-assign": 0,
30     "no-throw-literal": 0,
31     "no-trailing-spaces": 0,
32     "no-unused-expressions": 0,
33     "no-useless-constructor": 0,
34     "no-useless-escape": 0,
35     "no-var": 0,
36     "prefer-const": 0,
37     "prefer-rest-params": 0,
38     "quote-props": 0,
39     "unicorn/filename-case": 0
40   }
41 }