generated from paperback-community/template-extensions
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy patheslint.config.js
34 lines (33 loc) · 889 Bytes
/
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
import eslint from "@eslint/js";
import tseslint from "typescript-eslint";
export default tseslint.config(
{
extends: [eslint.configs.recommended],
files: ["**/*{.js,.ts}"],
languageOptions: {
ecmaVersion: "latest",
sourceType: "module",
},
},
{
extends: [...tseslint.configs.recommendedTypeChecked],
files: ["**/*.ts"],
languageOptions: {
parser: tseslint.parser,
parserOptions: {
projectService: true,
tsconfigRootDir: import.meta.dirname,
},
},
rules: {
"@typescript-eslint/require-await": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{ varsIgnorePattern: "^_" },
],
},
},
{
ignores: ["bundles"],
},
);