Skip to content

Commit

Permalink
fixup! set ecmaversion and source type on min file
Browse files Browse the repository at this point in the history
  • Loading branch information
timmywil committed Jun 4, 2024
1 parent fb558ae commit 808a24f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,6 @@ export default [
{
files: [ "dist/jquery-migrate.js" ],
languageOptions: {
ecmaVersion: 5,
sourceType: "script",
globals: {
define: false,
jQuery: false,
Expand All @@ -191,5 +189,13 @@ export default [
"no-multiple-empty-lines": "off",
"one-var": "off"
}
},

{
files: [ "dist/**" ],
languageOptions: {
ecmaVersion: 5,
sourceType: "script"
}
}
];

0 comments on commit 808a24f

Please sign in to comment.