Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 776927f

Browse files
committedFeb 12, 2020
Temporarily disable the import/order rule
1 parent 7aa7d53 commit 776927f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
 

Diff for: ‎config/plugins.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,9 @@ module.exports = {
142142
// }
143143
// ],
144144

145-
'import/order': 'error',
145+
// Disabled because of https://github.com/benmosher/eslint-plugin-import/pull/1651 and other issues.
146+
// 'import/order': 'error',
147+
146148
'import/no-unassigned-import': [
147149
'error',
148150
{

Diff for: ‎index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const runEslint = (paths, options) => {
3636
const engine = new eslint.CLIEngine(config);
3737
const report = engine.executeOnFiles(
3838
paths.filter(path => !engine.isPathIgnored(path)),
39-
config,
39+
config
4040
);
4141
return processReport(report, options);
4242
};

0 commit comments

Comments
 (0)
Please sign in to comment.