Skip to content

Commit

Permalink
fix(eslint): properly import reusable rules
Browse files Browse the repository at this point in the history
  • Loading branch information
pathurs committed Sep 21, 2020
1 parent 82f5043 commit 40075b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
4 changes: 1 addition & 3 deletions default/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
module.exports = {
extends: "@colonise/config/eslint"
}
module.exports = require('@colonise/config/eslint');
6 changes: 1 addition & 5 deletions eslint.js
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
/* eslint-disable */

const eslintConfig = require('./.eslintrc.js');

module.exports = eslintConfig;
module.exports = require('./.eslintrc.js');

0 comments on commit 40075b6

Please sign in to comment.