-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
eslint.config.js
47 lines (46 loc) · 1.34 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
import importPlugin from "eslint-plugin-import";
import js from "@eslint/js";
import prettier from "eslint-config-prettier";
import jsdoc from "eslint-plugin-jsdoc";
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"],
unicorn.configs["flat/recommended"],
webComponents.configs["flat/recommended"],
{
ignores: ["**/.cache/", "_site", "docs/.vitepress/config.js"],
},
{
files: ["**/{packages,helpers}/**/*.js"],
languageOptions: { globals: { ...globals.node }, ecmaVersion: "latest" },
rules: {
"import/order": [
"error",
{
alphabetize: { order: "asc" },
"newlines-between": "always",
},
],
"jsdoc/no-undefined-types": [1, { definedTypes: ["NodeJS"] }],
"jsdoc/require-hyphen-before-param-description": "warn",
},
},
{
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,
];