Skip to content

Commit 63e4fc4

Browse files
authored
Merge pull request #70 from planetlabs/more-lenient
Ignore file extension on imports specifiers for packages
2 parents 3f42a4a + b545757 commit 63e4fc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module.exports = {
1717
'dot-notation': ['error', {allowPattern: '^[a-z]+(_[a-z]+)+$'}],
1818
eqeqeq: 'error',
1919
'import/default': 'error',
20-
'import/extensions': ['error', 'always'],
20+
'import/extensions': ['error', 'always', {ignorePackages: true}],
2121
'import/first': 'error',
2222
'import/named': 'error',
2323
'import/no-duplicates': 'error',

0 commit comments

Comments
 (0)