Skip to content

Commit 6ec3122

Browse files
author
Satya Deep Maheshwari
committed
wip
1 parent 08d9df9 commit 6ec3122

File tree

3 files changed

+61
-30
lines changed

3 files changed

+61
-30
lines changed

eslint.config.mjs

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import globals from "globals";
2+
import pluginJs from "@eslint/js";
3+
4+
5+
/** @type {import('eslint').Linter.Config[]} */
6+
export default [
7+
{languageOptions: { globals: globals.browser }},
8+
pluginJs.configs.recommended,
9+
];

package-lock.json

+47-27
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,11 @@
2020
"homepage": "https://github.com/adobe/aem-boilerplate#readme",
2121
"devDependencies": {
2222
"@babel/eslint-parser": "7.25.1",
23-
"eslint": "8.57.0",
24-
"eslint-config-airbnb-base": "15.0.0",
25-
"eslint-plugin-import": "2.29.1",
23+
"@eslint/js": "^9.16.0",
24+
"eslint": "^8.57.1",
25+
"eslint-config-airbnb-base": "^15.0.0",
26+
"eslint-plugin-import": "^2.29.1",
27+
"globals": "^15.13.0",
2628
"stylelint": "16.8.2",
2729
"stylelint-config-standard": "36.0.1"
2830
}

0 commit comments

Comments
 (0)