Skip to content

Commit 2dee89c

Browse files
[INTERNAL] Bump eslint from 8.57.0 to 9.8.0 (#992)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Max Reichmann <[email protected]>
1 parent 680efcb commit 2dee89c

5 files changed

+212
-314
lines changed

.eslintignore

-4
This file was deleted.

.eslintrc.cjs

-50
This file was deleted.

eslint.config.mjs

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
import globals from "globals";
2+
import path from "node:path";
3+
import {fileURLToPath} from "node:url";
4+
import js from "@eslint/js";
5+
import {FlatCompat} from "@eslint/eslintrc";
6+
7+
const __filename = fileURLToPath(import.meta.url);
8+
const __dirname = path.dirname(__filename);
9+
const compat = new FlatCompat({
10+
baseDirectory: __dirname,
11+
recommendedConfig: js.configs.recommended,
12+
allConfig: js.configs.all
13+
});
14+
15+
export default [{
16+
ignores: ["**/site/"],
17+
}, ...compat.extends("eslint:recommended", "google"), {
18+
plugins: {},
19+
20+
languageOptions: {
21+
globals: {
22+
...globals.node,
23+
},
24+
25+
ecmaVersion: 2023,
26+
sourceType: "module",
27+
},
28+
29+
rules: {
30+
"indent": ["error", "tab"],
31+
"linebreak-style": ["error", "unix"],
32+
33+
"quotes": ["error", "double", {
34+
allowTemplateLiterals: true,
35+
}],
36+
37+
"semi": ["error", "always"],
38+
"no-negated-condition": "off",
39+
"require-jsdoc": "off",
40+
"no-mixed-requires": "off",
41+
42+
"max-len": ["error", {
43+
code: 120,
44+
ignoreUrls: true,
45+
ignoreRegExpLiterals: true,
46+
}],
47+
48+
"no-implicit-coercion": [2, {
49+
allow: ["!!"],
50+
}],
51+
52+
"comma-dangle": "off",
53+
"no-tabs": "off",
54+
"no-console": "off", // scripts use console.log to print out
55+
"valid-jsdoc": 0,
56+
},
57+
}];

0 commit comments

Comments
 (0)