Skip to content

Commit 8ab81ab

Browse files
authored
[INTERNAL] Refactor ESLint config (#1000)
JIRA: CPOUI5FOUNDATION-827 Remove ESLint compat dependency Add common ESLint config from other tooling repos Add project-specific ESLint config
1 parent 3bf3184 commit 8ab81ab

5 files changed

+880
-286
lines changed

eslint.common.config.js

+99
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
import jsdoc from "eslint-plugin-jsdoc";
2+
import ava from "eslint-plugin-ava";
3+
import globals from "globals";
4+
import js from "@eslint/js";
5+
import google from "eslint-config-google";
6+
7+
export default [{
8+
ignores: [ // Common ignore patterns across all tooling repos
9+
"**/coverage/",
10+
"test/tmp/",
11+
"test/expected/",
12+
"test/fixtures/",
13+
"**/docs/",
14+
"**/jsdocs/",
15+
],
16+
}, js.configs.recommended, google, ava.configs["flat/recommended"], {
17+
name: "Common ESLint config used for all tooling repos",
18+
19+
plugins: {
20+
jsdoc,
21+
},
22+
23+
languageOptions: {
24+
globals: {
25+
...globals.node,
26+
},
27+
28+
ecmaVersion: 2023,
29+
sourceType: "module",
30+
},
31+
32+
settings: {
33+
jsdoc: {
34+
mode: "jsdoc",
35+
36+
tagNamePreference: {
37+
return: "returns",
38+
augments: "extends",
39+
},
40+
},
41+
},
42+
43+
rules: {
44+
"indent": ["error", "tab"],
45+
"linebreak-style": ["error", "unix"],
46+
47+
"quotes": ["error", "double", {
48+
allowTemplateLiterals: true,
49+
}],
50+
51+
"semi": ["error", "always"],
52+
"no-negated-condition": "off",
53+
"require-jsdoc": "off",
54+
"no-mixed-requires": "off",
55+
56+
"max-len": ["error", {
57+
code: 120,
58+
ignoreUrls: true,
59+
ignoreRegExpLiterals: true,
60+
}],
61+
62+
"no-implicit-coercion": [2, {
63+
allow: ["!!"],
64+
}],
65+
66+
"comma-dangle": "off",
67+
"no-tabs": "off",
68+
"no-console": 2, // Disallow console.log()
69+
"no-eval": 2,
70+
// The following rule must be disabled as of ESLint 9.
71+
// It's removed and causes issues when present
72+
// https://eslint.org/docs/latest/rules/valid-jsdoc
73+
"valid-jsdoc": 0,
74+
"jsdoc/check-examples": 0,
75+
"jsdoc/check-param-names": 2,
76+
"jsdoc/check-tag-names": 2,
77+
"jsdoc/check-types": 2,
78+
"jsdoc/no-undefined-types": 0,
79+
"jsdoc/require-description": 0,
80+
"jsdoc/require-description-complete-sentence": 0,
81+
"jsdoc/require-example": 0,
82+
"jsdoc/require-hyphen-before-param-description": 0,
83+
"jsdoc/require-param": 2,
84+
"jsdoc/require-param-description": 0,
85+
"jsdoc/require-param-name": 2,
86+
"jsdoc/require-param-type": 2,
87+
"jsdoc/require-returns": 0,
88+
"jsdoc/require-returns-description": 0,
89+
"jsdoc/require-returns-type": 2,
90+
91+
"jsdoc/tag-lines": [2, "any", {
92+
startLines: 1,
93+
}],
94+
95+
"jsdoc/valid-types": 0,
96+
"ava/assertion-arguments": 0,
97+
},
98+
}
99+
];

eslint.config.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import eslintCommonConfig from "./eslint.common.config.js";
2+
3+
export default [
4+
{
5+
// Add project-specific ignore patterns for ESLint here
6+
// to add to common config
7+
ignores: ["**/site/"]
8+
},
9+
...eslintCommonConfig, // Load common ESLint config
10+
{
11+
// Add remaining project-specific ESLint config rules here
12+
// in order to override common config
13+
rules: {
14+
"no-console": "off",
15+
}
16+
}
17+
];

eslint.config.mjs

-57
This file was deleted.

0 commit comments

Comments
 (0)