[eslint config] [base] [breaking] re-disable import/extensions rule

ref https://github.com/benmosher/eslint-plugin-import/issues/390
This commit is contained in:
Jordan Harband
2016-06-20 23:48:28 -07:00
parent c9bcc7ef36
commit 9028379f87

View File

@@ -96,7 +96,8 @@ module.exports = {
// Ensure consistent use of file extension within the import path
// https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/extensions.md
'import/extensions': [2, 'never'],
// TODO: enable when https://github.com/benmosher/eslint-plugin-import/issues/390 is resolved
'import/extensions': [0, 'never'],
// Enforce a convention in module import order
// https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/order.md