Migrate deprecated eslint config to to new format

The .eslintrc and .eslintignore formats are deprecated. The new format
uses a single eslint.config.js (or .mjs) file at the top.
This commit is contained in:
Samuel Mannehed
2024-04-22 08:49:30 +02:00
parent c998c723ad
commit 8d1b665808
7 changed files with 99 additions and 83 deletions

View File

@@ -1,15 +0,0 @@
{
"env": {
"node": true,
"mocha": true
},
"globals": {
"chai": false,
"sinon": false
},
"rules": {
"prefer-arrow-callback": 0,
// Too many anonymous callbacks
"func-names": "off",
}
}