We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
import/order
1 parent 7aa7d53 commit 776927fCopy full SHA for 776927f
config/plugins.js
@@ -142,7 +142,9 @@ module.exports = {
142
// }
143
// ],
144
145
- 'import/order': 'error',
+ // Disabled because of https://github.com/benmosher/eslint-plugin-import/pull/1651 and other issues.
146
+ // 'import/order': 'error',
147
+
148
'import/no-unassigned-import': [
149
'error',
150
{
index.js
@@ -36,7 +36,7 @@ const runEslint = (paths, options) => {
36
const engine = new eslint.CLIEngine(config);
37
const report = engine.executeOnFiles(
38
paths.filter(path => !engine.isPathIgnored(path)),
39
- config,
+ config
40
);
41
return processReport(report, options);
42
};
0 commit comments