We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8494d2b commit dcad861Copy full SHA for dcad861
README.md
@@ -53,6 +53,12 @@ module.exports = {
53
This will set up all the files in the project for linting as Node.js by default,
54
except for those in `src/`, which will be linted as ES6 and React files.
55
56
+If you're linting React, also make sure your lint script lints `.jsx` files:
57
+```json
58
+"scripts": {
59
+ "lint": "eslint . --ext .js,.jsx"
60
+}
61
+```
62
63
## Committing
64
This project uses [semantic release](https://github.com/semantic-release/semantic-release)
package.json
@@ -30,7 +30,7 @@
30
},
31
"peerDependencies": {
32
"babel-eslint": "7.x",
33
- "eslint": "~3.8"
+ "eslint": "3.x"
34
35
"devDependencies": {
36
"cz-conventional-changelog": "1.2.0",
0 commit comments