Skip to content

Commit

Permalink
Enforce the use of extensions for all import statements except packag…
Browse files Browse the repository at this point in the history
…e imports
  • Loading branch information
screendriver committed Jan 15, 2024
1 parent 12d1afb commit 5848fda
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions configs/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -362,9 +362,9 @@ export const baseConfig = {
'import/extensions': [
'error',
{
js: 'always',
jsx: 'always',
json: 'always'
js: 'ignorePackages',
jsx: 'ignorePackages',
json: 'ignorePackages'
}
],
'import/namespace': [
Expand Down

0 comments on commit 5848fda

Please sign in to comment.