Skip to content

Commit

Permalink
fix(importSettings): Set modules to not parse
Browse files Browse the repository at this point in the history
  • Loading branch information
Kent C. Dodds committed Jul 19, 2016
1 parent b2ba366 commit f0f8e24
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,13 @@ module.exports = {
"babel/flow-object-type": 0, // no opinion
"babel/func-params-comma-dangle": [2, "only-multiline"],
"babel/no-await-in-loop": 2, // I don't use async/await, but sounds like a good idea to have on.

},
"settings": {
"import/ignore": [
"node_modules",
"\.json$",
"\.(scss|less|css|styl)$",
],
},
"env": {
"browser": true,
Expand Down

0 comments on commit f0f8e24

Please sign in to comment.