@webpack-contrib/eslint-config-webpack
Advanced tools
Comparing version 2.0.2 to 2.0.3
@@ -5,2 +5,13 @@ # Change Log | ||
<a name="2.0.3"></a> | ||
## [2.0.3](https://github.com/webpack-contrib/eslint-config-webpack/compare/v2.0.2...v2.0.3) (2018-04-01) | ||
### Bug Fixes | ||
* **import/order:** Chage import order from error to warn ([960c93f](https://github.com/webpack-contrib/eslint-config-webpack/commit/960c93f)) | ||
* **import/order:** Update rule to not conflict with prettier ([a8635f0](https://github.com/webpack-contrib/eslint-config-webpack/commit/a8635f0)) | ||
<a name="2.0.2"></a> | ||
@@ -7,0 +18,0 @@ ## [2.0.2](https://github.com/webpack-contrib/eslint-config-webpack/compare/v2.0.1...v2.0.2) (2017-12-17) |
{ | ||
"name": "@webpack-contrib/eslint-config-webpack", | ||
"version": "2.0.2", | ||
"version": "2.0.3", | ||
"author": "Joshua Wiens (https://twitter.com/@d3viant0ne)", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -148,5 +148,5 @@ module.exports = { | ||
// https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/order.md | ||
'import/order': ['error', { | ||
'import/order': ['warning', { | ||
groups: ['builtin', 'external', 'internal', 'parent', 'sibling', 'index'], | ||
'newlines-between': 'never', | ||
'newlines-between': 'always-and-inside-groups', | ||
}], | ||
@@ -153,0 +153,0 @@ |
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
60150