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 9c574ba commit 1fe8c52Copy full SHA for 1fe8c52
README.md
@@ -21,12 +21,16 @@ $ npm install --save-dev eslint eslint-plugin-node
21
22
**.eslintrc.json** (An example)
23
24
-```json
+```jsonc
25
{
26
"extends": [
27
"eslint:recommended",
28
"plugin:node/recommended"
29
],
30
+ "parserOptions": {
31
+ // Only ESLint 6.2.0 and later support ES2020.
32
+ "ecmaVersion": 2020
33
+ },
34
"rules": {
35
"node/exports-style": ["error", "module.exports"],
36
"node/file-extension-in-import": ["error", "always"],
@@ -159,7 +163,7 @@ Those preset config:
159
163
160
164
- [GitHub Releases](https://github.com/mysticatea/eslint-plugin-node/releases)
161
165
162
-## 💎 Contributing
166
+## ❤️ Contributing
167
168
Welcome contributing!
169
0 commit comments