Skip to content

Commit

Permalink
Temporarily disable the import/order rule
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Feb 12, 2020
1 parent 7aa7d53 commit 776927f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion config/plugins.js
Expand Up @@ -142,7 +142,9 @@ module.exports = {
// }
// ],

'import/order': 'error',
// Disabled because of https://github.com/benmosher/eslint-plugin-import/pull/1651 and other issues.
// 'import/order': 'error',

'import/no-unassigned-import': [
'error',
{
Expand Down
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -36,7 +36,7 @@ const runEslint = (paths, options) => {
const engine = new eslint.CLIEngine(config);
const report = engine.executeOnFiles(
paths.filter(path => !engine.isPathIgnored(path)),
config,
config
);
return processReport(report, options);
};
Expand Down

0 comments on commit 776927f

Please sign in to comment.