-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1573 from lucasnetau/fix/1-node
Update from node 16 to node 20 for Github actions and builds
- Loading branch information
Showing
11 changed files
with
8,319 additions
and
13,712 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import prettier from "eslint-plugin-prettier"; | ||
import globals from "globals"; | ||
import babelParser from "@babel/eslint-parser"; | ||
import path from "node:path"; | ||
import { fileURLToPath } from "node:url"; | ||
import js from "@eslint/js"; | ||
import { FlatCompat } from "@eslint/eslintrc"; | ||
|
||
const __filename = fileURLToPath(import.meta.url); | ||
const __dirname = path.dirname(__filename); | ||
const compat = new FlatCompat({ | ||
baseDirectory: __dirname, | ||
recommendedConfig: js.configs.recommended, | ||
allConfig: js.configs.all | ||
}); | ||
|
||
export default [...compat.extends("eslint:recommended", "prettier"), { | ||
plugins: { | ||
prettier, | ||
}, | ||
|
||
languageOptions: { | ||
globals: { | ||
...globals.browser, | ||
...globals.node, | ||
...globals.jest, | ||
jQuery: true, | ||
$: true, | ||
}, | ||
|
||
parser: babelParser, | ||
ecmaVersion: 2018, | ||
sourceType: "module", | ||
}, | ||
|
||
rules: { | ||
"max-len": 0, | ||
"linebreak-style": ["error", "unix"], | ||
quotes: ["error", "single"], | ||
semi: ["error", "never"], | ||
"no-unused-vars": 1, | ||
"no-prototype-builtins": 0, | ||
"arrow-parens": ["warn", "as-needed"], | ||
|
||
"prefer-const": [1, { | ||
destructuring: "any", | ||
ignoreReadBeforeAssign: false, | ||
}], | ||
}, | ||
}]; |
Oops, something went wrong.