-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.cjs
51 lines (49 loc) · 1.3 KB
/
.eslintrc.cjs
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
/** @type {import("eslint").Linter.Config} */
// const path = require("path")
module.exports = {
env: {
node: true,
es2022: true,
browser: true,
},
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
},
overrides: [
{
files: ["*.ts", "*.tsx", "*.js", "*.jsx"],
extends: [
"plugin:react/recommended",
"standard-with-typescript",
"plugin:prettier/recommended",
],
plugins: ["react"],
rules: {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/triple-slash-reference": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/strict-boolean-expressions": "off",
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-floating-promises": "off",
},
},
{
files: ["*.astro"],
extends: ["plugin:astro/recommended", "plugin:prettier/recommended"],
parser: "astro-eslint-parser",
parserOptions: {
parser: "@typescript-eslint/parser",
extraFileExtensions: [".astro"],
},
rules: {},
},
],
settings: {
react: {
version: "detect",
},
},
}