-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy patheslint.config.js
61 lines (60 loc) · 1.66 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
50
51
52
53
54
55
56
57
58
59
60
61
import importPlugin from "eslint-plugin-import";
import js from "@eslint/js";
import prettier from "eslint-config-prettier";
import jsdoc from "eslint-plugin-jsdoc";
import sortClassMembers from "eslint-plugin-sort-class-members";
import unicorn from "eslint-plugin-unicorn";
import webComponents from "eslint-plugin-wc";
import globals from "globals";
export default [
importPlugin.flatConfigs.recommended,
js.configs.recommended,
jsdoc.configs["flat/recommended"],
sortClassMembers.configs["flat/recommended"],
unicorn.configs["recommended"],
webComponents.configs["flat/recommended"],
{
ignores: [
"**/.cache/",
"_site",
"docs/.vitepress/config.js",
"eslint.config.js",
],
},
{
files: ["**/{packages,helpers}/**/*.js"],
languageOptions: { globals: { ...globals.node }, ecmaVersion: "latest" },
rules: {
"import/no-named-as-default": 0,
"import/order": [
"error",
{
alphabetize: { order: "asc" },
"newlines-between": "always",
},
],
"jsdoc/no-undefined-types": [1, { definedTypes: ["NodeJS"] }],
"jsdoc/require-hyphen-before-param-description": "warn",
"unicorn/prevent-abbreviations": [
"error",
{
allowList: { utils: true },
},
],
},
},
{
files: ["**/frontend/**/*.js"],
languageOptions: { globals: { ...globals.browser } },
rules: { "wc/no-self-class": "warn" },
},
{
files: ["**/frontend/lib/serviceworker.js"],
languageOptions: { globals: { ...globals.serviceworker } },
},
{
files: ["**/test/**/*.js"],
rules: { "unicorn/no-process-exit": 0 },
},
prettier,
];