We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9a417e commit 24a137eCopy full SHA for 24a137e
.eslintrc.js
@@ -0,0 +1,22 @@
1
+"use strict"
2
+
3
+/** @type {import('eslint').Linter.Config} */
4
+module.exports = {
5
+ root: true,
6
+ extends: ["plugin:@eslint-community/mysticatea/es2020"],
7
+ rules: {
8
+ "@eslint-community/mysticatea/prettier": "off",
9
+ },
10
+ overrides: [
11
+ {
12
+ files: ["src/**/*.js", "test/**/*.js"],
13
+ extends: ["plugin:@eslint-community/mysticatea/+modules"],
14
15
+ "init-declarations": "off",
16
17
+ "@eslint-community/mysticatea/node/no-unsupported-features/es-syntax":
18
+ ["error", { ignores: ["modules"] }],
19
20
21
+ ],
22
+}
.eslintrc.yml
0 commit comments