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
* Add import and destructuring support to [`no-deprecated`][]
10
+
* Add `reservedFirst` option to [`jsx-sort-props`][] ([#1134][]@MatthewHerbst)
9
11
10
12
### Breaking
11
-
* Drop Node.js < 4 support ([#1038]@ljharb)
12
-
* Add [`no-danger-with-children`][] rule to recommended rules ([#748]@ljharb)
13
-
* Add [`no-string-refs`][] rule to recommended rules ([#749]@ljharb)
14
-
* Add [`jsx-key`][] rule to recommended rules ([#750]@ljharb)
15
-
* Add [`jsx-no-comment-textnodes`][] rule to recommended rules ([#751]@ljharb)
16
-
* Add [`jsx-no-target-blank`][] rule to recommended rules ([#752]@ljharb)
17
-
* Add [`no-unescaped-entities`][] rule to recommended rules ([#841]@ljharb)
18
-
* Add [`no-children-prop`][] rule to recommended rules ([#842]@ljharb)
13
+
* Update rules for React 15.5.0:
14
+
* Add warnings for `React.PropTypes` and `React.createClass` in [`no-deprecated`][] ([#1148][]@Calyhre)
15
+
* Update `createClass` component factory to `createReactClass`. This is used for React component detection, if you still using `React.createClass` use the [shared settings](README.md#configuration) to specify `createClass` as component factory
16
+
* Drop Node.js < 4 support ([#1038][]@ljharb)
17
+
* Add [`no-danger-with-children`][] rule to recommended rules ([#748][]@ljharb)
18
+
* Add [`no-string-refs`][] rule to recommended rules ([#749][]@ljharb)
19
+
* Add [`jsx-key`][] rule to recommended rules ([#750][]@ljharb)
20
+
* Add [`jsx-no-comment-textnodes`][] rule to recommended rules ([#751][]@ljharb)
21
+
* Add [`jsx-no-target-blank`][] rule to recommended rules ([#752][]@ljharb)
22
+
* Add [`no-unescaped-entities`][] rule to recommended rules ([#841][]@ljharb)
23
+
* Add [`no-children-prop`][] rule to recommended rules ([#842][]@ljharb)
19
24
* Remove deprecated [`wrap-multilines`][] rule, use [`jsx-wrap-multilines`][] instead
20
25
* Remove deprecated [`no-comment-textnodes`][] rule, use [`jsx-no-comment-textnodes`][] instead
21
26
* Remove deprecated [`require-extension`][] rule, use the [eslint-plugin-import](https://github.com/benmosher/eslint-plugin-import)[`extensions`](https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/extensions.md) rule instead
22
-
* Deprecate [`jsx-space-before-closing`][] rule, use the [`jsx-tag-spacing`] rule instead. [`jsx-space-before-closing`][] still works but will trigger a warning ([#1070]@afairb)
23
-
*[`jsx-first-prop-new-line`][] default is now `multiline-multiprop` ([#802]@kokarn)
24
-
*[`jsx-wrap-multilines`] now checks arrow functions without block body. It can be deactivated in [rule options](docs/rules/jsx-wrap-multilines.md#rule-details) ([#790]@ColCh)
25
-
*[`jsx-no-undef`] will not check the global scope by default. You can force it with the [`allowGlobals`](docs/rules/jsx-no-undef.md#allowglobals) option ([#1013]@jomasti)
27
+
* Deprecate [`jsx-space-before-closing`][] rule, use the [`jsx-tag-spacing`][] rule instead. [`jsx-space-before-closing`][] still works but will trigger a warning ([#1070][]@afairb)
28
+
*[`jsx-first-prop-new-line`][] default is now `multiline-multiprop` ([#802][]@kokarn)
29
+
*[`jsx-wrap-multilines`][] now checks arrow functions without block body. It can be deactivated in [rule options](docs/rules/jsx-wrap-multilines.md#rule-details) ([#790][]@ColCh)
30
+
*[`jsx-no-undef`][] will not check the global scope by default. You can force it with the [`allowGlobals`](docs/rules/jsx-no-undef.md#allowglobals) option ([#1013][]@jomasti)
31
+
32
+
### Fixed
33
+
* Fix [`no-unused-prop-types`][] false positive with `nextProps` ([#1079][]@Kerumen)
34
+
* Fix [`prefer-stateless-function`][] to not warn on classes with decorators ([#1034][]@benstepp)
* Add import and destructuring support to [`no-deprecated`][]
46
-
47
-
### Breaking
48
-
* Update rules for React 15.5.0:
49
-
* Add warnings for `React.PropTypes` and `React.createClass` in [`no-deprecated`][] ([#1148][]@Calyhre)
50
-
* Update `createClass` component factory to `createReactClass`. This is used for React component detection, if you still using `React.createClass` use the [shared settings](README.md#configuration) to specify `createClass` as component factory
51
-
52
-
### Fixed
53
-
* Fix [`no-unused-prop-types`][] false positive with `nextProps` ([#1079][]@Kerumen)
54
-
* Fix [`prefer-stateless-function`][] to not warn on classes with decorators ([#1034][]@benstepp)
0 commit comments