Skip to content
This repository was archived by the owner on Mar 7, 2019. It is now read-only.

Commit 6792836

Browse files
feat(eslint): upgrade ESlint to v5
BREAKING CHANGE:
1 parent b46bd88 commit 6792836

File tree

4 files changed

+179
-150
lines changed

4 files changed

+179
-150
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[eslint-url]: http://eslint.org
22
[travis-badge]: https://travis-ci.org/strvcom/eslint-config-javascript.svg
33
[travis-url]: https://travis-ci.org/strvcom/eslint-config-javascript
4-
[eslint-version]: https://img.shields.io/badge/ESLint-^4.19.1-brightgreen.svg
4+
[eslint-version]: https://img.shields.io/badge/ESLint-^5.0.0-brightgreen.svg
55
[eslint-fixing]: http://eslint.org/docs/user-guide/command-line-interface#fix
66
[flow-home]: https://flow.org
77
[react-home]: http://reactjs.com

coding-styles/recommended.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ module.exports = {
2323
// This rule looks for any underscores (_) located within the source code. It ignores leading
2424
// and trailing underscores and only checks those in the middle of a variable name. If ESLint
2525
// decides that the variable is a constant (all uppercase), then no warning will be thrown.
26-
camelcase: ['warn', {
27-
properties: 'always',
28-
}],
26+
camelcase: ['warn'],
2927

3028
// Require Consistent This
3129
// This rule designates a variable as the chosen alias for `this`.

0 commit comments

Comments
 (0)