forked from getindiekit/indiekit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.js
37 lines (36 loc) · 1.12 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
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: { "jsdoc/no-undefined-types": [1, { definedTypes: ["NodeJS"] }] },
},
{
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,
];