laziel / vuejs-extension-pack

Popular VS Code extensions for Vue.js development.

Home Page:https://marketplace.visualstudio.com/items?itemName=mubaidr.vuejs-extension-pack

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vue.js Extension Pack

This extension pack adds features for Vue.js development.

Note

Please read the Recommended Settings section to enable all features.

Recommended-Settings

Setup VS Code

Enable FormatOnSave & Eslint for .vue files:

"editor.formatOnSave": true,
"eslint.validate": [
  "javascript",
  "javascriptreact",
  "vue"
]

Setup ESLint

Install following packages:

npm install --save-dev eslint-plugin-vue
npm install --save-dev eslint-config-prettier

Create/update eslint config file (.eslintrc.js or .eslintrc.json) in your project folder:

// Sample `.eslintrc.js`

module.exports = {
  plugins: ['vue'], // enable vue plugin
  extends: ['plugin:vue/essential', 'prettier'], // activate vue related rules
}

Extensions Included in this pack

Credits

All credits goes to original authors of the above mentioned extensions.

Happy Coding!

About

Popular VS Code extensions for Vue.js development.

https://marketplace.visualstudio.com/items?itemName=mubaidr.vuejs-extension-pack

License:MIT License