Skip to content
Snippets Groups Projects
Commit ebb9ed37 authored by Julian's avatar Julian
Browse files

Include prettier

parent acfbff6f
No related branches found
No related tags found
1 merge request!2Resolve "Implement basic functionality"
......@@ -7,6 +7,7 @@ module.exports = {
"plugin:vue/essential",
"plugin:vue/strongly-recommended",
"eslint:recommended",
"prettier",
"@vue/eslint-config-prettier",
],
env: {
......
dist/
docs/.vuepress/dist/
example/src/assets/base.css
.idea/
node_modules/
package-lock.json
......@@ -8,8 +8,8 @@
"example:preview": "vite preview example --port 4173",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --ignore-path .gitignore",
"reformat": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
"lint": "prettier --check . && eslint . --ext .vue,.js,.jsx,.cjs,.mjs --ignore-path .gitignore",
"reformat": "prettier --write . && eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
},
"keywords": [
"vue",
......@@ -39,7 +39,7 @@
"@vue/eslint-config-prettier": "^7.0.0",
"eslint": "^8.5.0",
"eslint-plugin-vue": "^9.0.0",
"prettier": "^2.5.1",
"prettier": "^2.8.4",
"rollup": "^3.12.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-vue": "^6.0.0",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment