forked from almahdi404/code-django
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.js
49 lines (48 loc) · 1.1 KB
/
eslint.config.js
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
// @ts-check
const eslint = require("@eslint/js");
const tseslint = require("typescript-eslint");
const globals = require("globals");
module.exports = tseslint.config(
{
ignores: ["**/out/*", "**/dist/*", "**/build/*"],
},
eslint.configs.recommended,
{
files: ["**/*.ts"],
plugins: {
"@typescript-eslint": tseslint.plugin,
},
rules: {
...tseslint.configs.eslintRecommended.rules,
...tseslint.configs.recommended.at(-1)?.rules,
...tseslint.configs.recommendedTypeChecked.at(-1)?.rules,
"@typescript-eslint/naming-convention": "warn",
"no-throw-literal": "warn",
eqeqeq: "warn",
},
},
{
files: ["src/**/*.ts"],
languageOptions: {
parser: tseslint.parser,
parserOptions: {
sourceType: "module",
project: true,
tsconfigRootDir: __dirname,
},
globals: {
...globals.browser,
},
},
},
{
files: ["*.config.js", "scripts/**/*.js"],
languageOptions: {
ecmaVersion: 2020,
globals: {
...globals.commonjs,
...globals.node,
},
},
}
);