Skip to content

Commit 776927f

Browse files
committed
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

config/plugins.js

Lines changed: 3 additions & 1 deletion
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
{

index.js

Lines changed: 1 addition & 1 deletion
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)