Skip to content

Commit

Permalink
(#601): Fixed default order for the order rule
Browse files Browse the repository at this point in the history
  • Loading branch information
jfmengels committed Oct 6, 2016
1 parent 404f506 commit d326f1b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
## [Unreleased]
### Fixed
- Fixed code that relied on removed dependencies. ([#604])
- Fixed default order for the [`order`] rule ([#601])

## [2.0.0]! - 2016-09-30
### Added
Expand Down Expand Up @@ -397,6 +398,7 @@ for info on changes for earlier releases.
[#314]: https://github.com/benmosher/eslint-plugin-import/pull/314

[#604]: https://github.com/benmosher/eslint-plugin-import/issues/604
[#601]: https://github.com/benmosher/eslint-plugin-import/issues/601
[#577]: https://github.com/benmosher/eslint-plugin-import/issues/577
[#570]: https://github.com/benmosher/eslint-plugin-import/issues/570
[#567]: https://github.com/benmosher/eslint-plugin-import/issues/567
Expand Down
2 changes: 1 addition & 1 deletion src/rules/order.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import importType from '../core/importType'
import isStaticRequire from '../core/staticRequire'

const defaultGroups = ['builtin', 'external', 'parent', 'sibling', 'index']
const defaultGroups = ['builtin', 'external', 'internal', 'parent', 'sibling', 'index']

// REPORTING

Expand Down

0 comments on commit d326f1b

Please sign in to comment.