Skip to content

Commit 71fdb9b

Browse files
committed
Added README section on use with eslint:reccomended preset
1 parent a666cc6 commit 71fdb9b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,17 @@ Once the `@matt-fidd/eslint-config` package is installed, you can use it by addi
2121
}
2222
```
2323

24+
### Using this config in conjunction with `eslint:recommended`
25+
26+
To work properly, this rule set is designed to be used alongside the `eslint:reccommended` rule set. To do this, simply define them both inside the [`extends`](http://eslint.org/docs/user-guide/configuring#extending-configuration-files) section of your [ESLint configuration](http://eslint.org/docs/user-guide/configuring).
27+
28+
```js
29+
{
30+
...
31+
"extends": [
32+
"eslint:recommended",
33+
"@matt-fidd"
34+
],
35+
...
36+
}
37+
```

0 commit comments

Comments
 (0)