Skip to content

Commit a240d4e

Browse files
committed
WS-3330: support email, linting config.
1 parent d79b39f commit a240d4e

File tree

3 files changed

+13
-133
lines changed

3 files changed

+13
-133
lines changed

.eslintrc.json

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

eslint.config.mjs

Lines changed: 9 additions & 0 deletions
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.node }},
8+
pluginJs.configs.recommended,
9+
];

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
],
3434
"author": {
3535
"name": "Analytics by Babel Street",
36-
"email": "helpdesk@babelstreet.com"
36+
"email": "analyticssupport@babelstreet.com"
3737
},
3838
"license": "Apache-2.0",
3939
"engines": {
@@ -44,9 +44,11 @@
4444
},
4545
"homepage": "https://developer.babelstreet.com",
4646
"devDependencies": {
47+
"@eslint/js": "^9.15.0",
4748
"argparse": "^2.0.1",
4849
"chai": "^4.5.0",
49-
"eslint": "^9.14.0",
50+
"eslint": "^9.15.0",
51+
"globals": "^15.12.0",
5052
"grunt": "^1.6.1",
5153
"grunt-contrib-clean": "^2.0.1",
5254
"grunt-contrib-watch": "^1.1.0",

0 commit comments

Comments
 (0)