-
Notifications
You must be signed in to change notification settings - Fork 53
/
.eslintrc.cjs
36 lines (36 loc) · 874 Bytes
/
.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
module.exports = {
root: true,
parser: "@typescript-eslint/parser",
extends: [
"plugin:@typescript-eslint/recommended",
"prettier",
"plugin:svelte/recommended",
"plugin:svelte/prettier"
],
plugins: ["@typescript-eslint"],
ignorePatterns: ["*.cjs"],
overrides: [
{
files: ["*.svelte"],
parser: "svelte-eslint-parser",
parserOptions: {
parser: "@typescript-eslint/parser"
}
}
],
parserOptions: {
sourceType: "module",
ecmaVersion: 2020,
project: "./tsconfig.json",
extraFileExtensions: [".svelte"]
},
rules: {
semi: ["error", "always"],
"@typescript-eslint/no-explicit-any": "off"
},
env: {
browser: true,
es2017: true,
node: true
}
};