We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8f6f04 commit 42ea64aCopy full SHA for 42ea64a
eslint/.eslintrc-reset
@@ -2,6 +2,8 @@
2
// http://eslint.org/docs/rules/
3
4
"parserOptions": {
5
+ "ecmaVersion": 2020,
6
+ "sourceType": "module",
7
"ecmaFeatures": {
8
"binaryLiterals": false, // enable binary literals
9
"blockBindings": false, // enable let and const (aka block bindings)
@@ -22,6 +24,7 @@
22
24
},
23
25
26
"env": {
27
+ "es2020": true,
28
"browser": false, // browser global variables.
29
"node": false, // Node.js global variables and Node.js-specific rules.
30
"amd": false, // defines require() and define() as global variables as per the amd spec.
0 commit comments