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 065b129 commit 258c023Copy full SHA for 258c023
README.md
@@ -61,5 +61,25 @@ For validating **ECMAScript 2015 (ES6)** in **Node.js** environment project use
61
}
62
63
```
64
+
65
+For validating **ECMAScript 2018 (ES9)** project use `es9` version:
66
67
+```json
68
+{
69
+ "parserOptions": {
70
+ "ecmaVersion": 9,
71
+ "sourceType": "module"
72
+ },
73
+ "env": {
74
+ "es2017": true,
75
+ "browser": true,
76
+ "commonjs": true,
77
78
+ "extends": "htmlacademy/basic",
79
+ "rules": {
80
+ // Additional rules...
81
+ }
82
+}
83
+```
84
[travis-image]: https://travis-ci.org/htmlacademy/eslint-config-htmlacademy.svg?branch=master
85
[travis-url]: https://travis-ci.org/htmlacademy/eslint-config-htmlacademy
0 commit comments