Skip to content

Commit

Permalink
chore: disable lint import/no-extraneous-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sqlwwx committed Dec 1, 2019
1 parent 9b23bb6 commit dd973a7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
module.exports = {
parser: 'babel-eslint',
extends: ['standard-airbnb-base'],
plugins: ['you-dont-need-lodash-underscore']
plugins: ['you-dont-need-lodash-underscore'],
rules: {
'import/no-extraneous-dependencies': 'off'
}
}
11 changes: 7 additions & 4 deletions src/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
module.exports = {
"parser": "babel-eslint",
"extends": ["standard-airbnb-base"],
"plugins": ["you-dont-need-lodash-underscore"]
};
parser: 'babel-eslint',
extends: ['standard-airbnb-base'],
plugins: ['you-dont-need-lodash-underscore'],
rules: {
'import/no-extraneous-dependencies': 'off'
}
}

0 comments on commit dd973a7

Please sign in to comment.