-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.js
42 lines (39 loc) · 1.11 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
import typescriptPlugin from "@typescript-eslint/eslint-plugin";
import wordpressPlugin from "@wordpress/eslint-plugin";
import typescriptParser from "@typescript-eslint/parser";
import prettierPlugin from "eslint-plugin-prettier";
export default [
{
files: ["**/*.{js,ts}"],
languageOptions: {
parser: typescriptParser,
parserOptions: {
ecmaVersion: 2020,
sourceType: "module",
},
globals: {
window: "readonly",
document: "readonly",
jQuery: "readonly",
module: "readonly",
require: "readonly",
},
},
plugins: {
"@typescript-eslint": typescriptPlugin,
"@wordpress": wordpressPlugin,
prettier: prettierPlugin,
},
rules: {
// Include rules from @wordpress/eslint-plugin/recommended
...wordpressPlugin.configs.recommended.rules,
// Include rules from @typescript-eslint/recommended
...typescriptPlugin.configs.recommended.rules,
// Add Prettier rules
"prettier/prettier": "error",
},
},
{
ignores: ["dist/", "build/", "node_modules/", "*.min.js"],
},
];