diff --git a/eslint.config.js b/eslint.config.js index b3baa81..a97aae4 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,9 +1,9 @@ module.exports = [ - { - ignores: ['node_modules', 'dist'], - rules: { - 'no-console': 'warn', - 'no-debugger': 'error' - } + { + ignores: ['node_modules', 'dist'], + rules: { + 'no-console': 'warn', + 'no-debugger': 'error' } -]; \ No newline at end of file + } +]; diff --git a/package-lock.json b/package-lock.json index 5b16ba4..2342a68 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12,7 +12,9 @@ "eslint-plugin-prettier": "^5.2.6", "eslint-plugin-vue": "^10.0.0", "husky": "^9.1.7", - "lint-staged": "^15.5.0", + "lint-staged": "^15.5.0" + }, + "devDependencies": { "prettier": "^3.5.3" } }, diff --git a/package.json b/package.json index 5752e0b..a6a8b03 100644 --- a/package.json +++ b/package.json @@ -7,8 +7,7 @@ "eslint-plugin-prettier": "^5.2.6", "eslint-plugin-vue": "^10.0.0", "husky": "^9.1.7", - "lint-staged": "^15.5.0", - "prettier": "^3.5.3" + "lint-staged": "^15.5.0" }, "lint-staged": { "*.{ts,vue}": [ @@ -23,5 +22,8 @@ "lint": "eslint --ext .ts,.vue src --fix", "format": "prettier --write .", "prepare": "husky install" + }, + "devDependencies": { + "prettier": "^3.5.3" } }