Skip to content

Commit

Permalink
use const instead let
Browse files Browse the repository at this point in the history
  • Loading branch information
ItMaga committed Oct 10, 2023
1 parent 5b9d329 commit f92d5db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rules/prefer-define-options.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ module.exports = {
}

/** @type {VStartTag | ImportDeclaration} */
let insertAfterTag = lastImportDeclaration || scriptSetup.startTag
const insertAfterTag = lastImportDeclaration || scriptSetup.startTag

return [
fixer.removeRange(removeRange),
Expand Down

0 comments on commit f92d5db

Please sign in to comment.