-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.js
37 lines (35 loc) · 1020 Bytes
/
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 js from "@eslint/js";
import globals from "globals";
import recommendedConfig from "eslint-plugin-prettier/recommended";
import eslintConfigPrettier from "eslint-config-prettier";
const { rules: prettierRules } = eslintConfigPrettier;
const prettierConfigsRecommended = recommendedConfig;
const {
configs: { recommended: jsConfigsRecommended },
} = js;
export default [
jsConfigsRecommended,
prettierConfigsRecommended,
{
files: ["**/*.js", "octicons-css"],
languageOptions: {
sourceType: "module",
ecmaVersion: 2024,
globals: {
...globals.node,
...globals.es2024,
},
},
rules: {
...prettierRules,
"no-unused-vars": [
"error",
{
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
caughtErrorsIgnorePattern: "^_",
},
],
},
},
];