Skip to content

Commit

Permalink
[INTERNAL] Bump eslint from 8.57.0 to 9.8.0 + Add common ESLint config (
Browse files Browse the repository at this point in the history
#1076)

Bumps [eslint](https://github.com/eslint/eslint) from 8.57.0 to 9.8.0.

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]>
  • Loading branch information
dependabot[bot] and maxreichmann authored Aug 2, 2024
1 parent 3e37145 commit 0bfc225
Show file tree
Hide file tree
Showing 11 changed files with 246 additions and 376 deletions.
16 changes: 0 additions & 16 deletions .eslintignore

This file was deleted.

86 changes: 0 additions & 86 deletions .eslintrc.cjs

This file was deleted.

99 changes: 99 additions & 0 deletions eslint.common.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
import jsdoc from "eslint-plugin-jsdoc";
import ava from "eslint-plugin-ava";
import globals from "globals";
import js from "@eslint/js";
import google from "eslint-config-google";

export default [{
ignores: [ // Common ignore patterns across all tooling repos
"**/coverage/",
"test/tmp/",
"test/expected/",
"test/fixtures/",
"**/docs/",
"**/jsdocs/",
],
}, js.configs.recommended, google, ava.configs["flat/recommended"], {
name: "Common ESLint config used for all tooling repos",

plugins: {
jsdoc,
},

languageOptions: {
globals: {
...globals.node,
},

ecmaVersion: 2023,
sourceType: "module",
},

settings: {
jsdoc: {
mode: "jsdoc",

tagNamePreference: {
return: "returns",
augments: "extends",
},
},
},

rules: {
"indent": ["error", "tab"],
"linebreak-style": ["error", "unix"],

"quotes": ["error", "double", {
allowTemplateLiterals: true,
}],

"semi": ["error", "always"],
"no-negated-condition": "off",
"require-jsdoc": "off",
"no-mixed-requires": "off",

"max-len": ["error", {
code: 120,
ignoreUrls: true,
ignoreRegExpLiterals: true,
}],

"no-implicit-coercion": [2, {
allow: ["!!"],
}],

"comma-dangle": "off",
"no-tabs": "off",
"no-console": 2, // Disallow console.log()
"no-eval": 2,
// The following rule must be disabled as of ESLint 9.
// It's removed and causes issues when present
// https://eslint.org/docs/latest/rules/valid-jsdoc
"valid-jsdoc": 0,
"jsdoc/check-examples": 0,
"jsdoc/check-param-names": 2,
"jsdoc/check-tag-names": 2,
"jsdoc/check-types": 2,
"jsdoc/no-undefined-types": 0,
"jsdoc/require-description": 0,
"jsdoc/require-description-complete-sentence": 0,
"jsdoc/require-example": 0,
"jsdoc/require-hyphen-before-param-description": 0,
"jsdoc/require-param": 2,
"jsdoc/require-param-description": 0,
"jsdoc/require-param-name": 2,
"jsdoc/require-param-type": 2,
"jsdoc/require-returns": 0,
"jsdoc/require-returns-description": 0,
"jsdoc/require-returns-type": 2,

"jsdoc/tag-lines": [2, "any", {
startLines: 1,
}],

"jsdoc/valid-types": 0,
"ava/assertion-arguments": 0,
},
}
];
12 changes: 12 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import eslintCommonConfig from "./eslint.common.config.js";

export default [
...eslintCommonConfig, // Load common ESLint config
{
// Add project-specific ESLint config rules here
// in order to override common config
ignores: [
"lib/processors/jsdoc/lib",
]
}
];
2 changes: 1 addition & 1 deletion lib/lbt/analyzer/XMLTemplateAnalyzer.js
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ class XMLTemplateAnalyzer {
}
}
}
} catch (err) {
} catch {
// ignore missing resources
// console.warn( "node not found %s", moduleName);
}
Expand Down
2 changes: 1 addition & 1 deletion lib/lbt/bundle/Builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ class BundleBuilder {
let resource = null;
try {
resource = await this.pool.findResourceWithInfo(module);
} catch (e) {
} catch {
log.error(` couldn't find ${module}`);
}

Expand Down
2 changes: 1 addition & 1 deletion lib/lbt/resources/ResourceCollector.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class ResourceCollector {
let subModuleInfo;
try {
subModuleInfo = await this._pool.getModuleInfo(subModule);
} catch (err) {
} catch {
log.verbose(` Missing submodule ${subModule} included by ${moduleInfo.name}`);
}
if (subModuleInfo) {
Expand Down
2 changes: 1 addition & 1 deletion lib/processors/manifestEnhancer.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function isAbsoluteUrl(url) {
const parsedUrl = new URL(url);
// URL with ui5 protocol shouldn't be treated as absolute URL and will be handled separately
return parsedUrl.protocol !== "ui5:";
} catch (err) {
} catch {
// URL constructor without base requires absolute URL and throws an error for relative URLs
return false;
}
Expand Down
1 change: 1 addition & 0 deletions lib/tasks/bundlers/generateFlexChangesBundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ export default async function({workspace, taskUtil, options = {}}) {
manifestContent["sap.ui5"].dependencies = manifestContent["sap.ui5"].dependencies || {};
if (!Array.isArray(manifestContent["sap.ui5"].dependencies.minUI5Version)) {
manifestContent["sap.ui5"].dependencies.minUI5Version =
// eslint-disable-next-line no-constant-binary-expression
[manifestContent["sap.ui5"].dependencies.minUI5Version] || [""];
}
return manifestContent["sap.ui5"].dependencies.minUI5Version;
Expand Down
Loading

0 comments on commit 0bfc225

Please sign in to comment.