[eslint config] [base] add some import plugin settings

This commit is contained in:
Jordan Harband
2016-06-21 10:08:26 -07:00
parent 1f87054e4b
commit b45fdcd60f

View File

@@ -15,7 +15,16 @@ module.exports = {
node: {
extensions: ['.js', '.json']
}
}
},
'import/extensions': [
'node_modules',
],
'import/core-modules': [
],
'import/ignore': [
'node_modules',
'\\.(coffee|scss|css|less|hbs|svg|json)$',
],
},
rules: {