xo 0.25.3 → 0.25.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/config/plugins.js CHANGED
@@ -142,7 +142,9 @@ module.exports = {
142
142
  // }
143
143
  // ],
144
144
 
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
+
146
148
  'import/no-unassigned-import': [
147
149
  'error',
148
150
  {
package/index.js CHANGED
@@ -36,7 +36,7 @@ const runEslint = (paths, options) => {
36
36
  const engine = new eslint.CLIEngine(config);
37
37
  const report = engine.executeOnFiles(
38
38
  paths.filter(path => !engine.isPathIgnored(path)),
39
- config,
39
+ config
40
40
  );
41
41
  return processReport(report, options);
42
42
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xo",
3
- "version": "0.25.3",
3
+ "version": "0.25.4",
4
4
  "description": "JavaScript linter with great defaults",
5
5
  "license": "MIT",
6
6
  "repository": "xojs/xo",