You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once the `eslint-config-htmlacademy` package is installed, you can use it by specifying `htmlacademy` in the [`extends`](http://eslint.org/docs/user-guide/configuring#extending-configuration-files) section of your [ESLint configuration](http://eslint.org/docs/user-guide/configuring).
16
16
17
-
For validating ECMAScript 5 project use `es5` version:
17
+
For validating **ECMAScript 5** project use `es5` version:
18
18
19
-
```js
19
+
```json
20
20
{
21
21
"extends": "htmlacademy/es5",
22
22
"rules": {
@@ -25,10 +25,17 @@ For validating ECMAScript 5 project use `es5` version:
25
25
}
26
26
```
27
27
28
-
For validating ECMAScript 6 project use `es6` version:
28
+
For validating **ECMAScript 2015 (ES6)** project use `es6` version:
0 commit comments