eslint-plugin-react
Advanced tools
Comparing version 5.2.0 to 5.2.1
@@ -6,2 +6,9 @@ # Change Log | ||
## [5.2.1] - 2016-06-17 | ||
### Fixed | ||
* Fix `jsx-pascal-case` for namespaced components ([#637][] @evcohen) | ||
[5.2.1]: https://github.com/yannickcr/eslint-plugin-react/compare/v5.2.0...v5.2.1 | ||
[#637]: https://github.com/yannickcr/eslint-plugin-react/issues/637 | ||
## [5.2.0] - 2016-06-17 | ||
@@ -8,0 +15,0 @@ ### Added |
@@ -32,5 +32,7 @@ /** | ||
// Get namespace if the type is JSXNamespacedName. | ||
// Get namespace if the type is JSXNamespacedName or JSXMemberExpression | ||
if (name.indexOf(':') > -1) { | ||
name = name.substring(0, name.indexOf(':')); | ||
} else if (name.indexOf('.') > -1) { | ||
name = name.substring(0, name.indexOf('.')); | ||
} | ||
@@ -37,0 +39,0 @@ |
{ | ||
"name": "eslint-plugin-react", | ||
"version": "5.2.0", | ||
"version": "5.2.1", | ||
"author": "Yannick Croissant <yannick.croissant+npm@gmail.com>", | ||
@@ -5,0 +5,0 @@ "description": "React specific linting rules for ESLint", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
239642
5632