-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.mjs
36 lines (34 loc) · 1005 Bytes
/
eslint.config.mjs
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
/*
* This program has been developed by students from the bachelor
* Computer Science at Utrecht University within the Software Project course.
*
* © Copyright Utrecht University
* (Department of Information and Computing Sciences)
*/
import baseConfig from "@graphpolaris/ts-configs/eslint";
import react from "eslint-plugin-react/configs/all.js";
import { FlatCompat } from "@eslint/eslintrc";
export default [
...baseConfig,
{
...react,
settings: {
react: {
version: "detect"
}
}
},
...new FlatCompat().extends("plugin:react-hooks/recommended"),
{
rules: {
"@typescript-eslint/no-explicit-any": "off",
"import/no-anonymous-default-export": "off",
"perfectionist/sort-interfaces": "off",
"perfectionist/sort-objects": "off",
"perfectionist/sort-object-types": "off",
"unicorn/consistent-function-scoping": "off",
"unicorn/no-abusive-eslint-disable": "off"
},
ignores: ["docs/**", "dist/**"]
}
];