Skip to content

Commit fa07581

Browse files
[ERSSUP-84813]-[]-[Second attempt]-[DMW]
1 parent 1085248 commit fa07581

5 files changed

Lines changed: 56 additions & 57 deletions

File tree

sandbox/eslint.config.js

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// eslint.config.js
2+
3+
//import js from "@eslint/js";
4+
//import globals from "globals";
5+
6+
const { configs } = require('@eslint/js');
7+
const globals = require('globals');
8+
9+
module.exports = [
10+
configs.recommended,
11+
{
12+
languageOptions: {
13+
ecmaVersion: 2018,
14+
globals: {
15+
...globals.commonjs,
16+
...globals.es6,
17+
...globals.node,
18+
Atomics: "readonly",
19+
SharedArrayBuffer: "readonly",
20+
},
21+
},
22+
rules: {
23+
},
24+
},
25+
]

sandbox/eslint.config.mjs

Lines changed: 0 additions & 32 deletions
This file was deleted.

sandbox/package-lock.json

Lines changed: 29 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sandbox/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"lodash": "^4.17.20"
1818
},
1919
"devDependencies": {
20-
"eslint": "^9.25.1"
20+
"eslint": "^9.25.1",
21+
"globals": "^16.1.0"
2122
}
2223
}

sandbox/src/.eslintrc.js

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)