Skip to content

Commit

Permalink
Handle .mjs files correctly with ESLint
Browse files Browse the repository at this point in the history
  • Loading branch information
farski committed Sep 25, 2023
1 parent ecd0a7b commit 0e89825
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,13 @@
"no-console": 0,
"no-param-reassign": 0,
"import/no-extraneous-dependencies": 0
}
},
"overrides": [
{
"files": ["**/*.mjs"],
"parserOptions": {
"sourceType": "module"
}
}
]
}

0 comments on commit 0e89825

Please sign in to comment.