Skip to content

Instantly share code, notes, and snippets.

@AbhimanyuAryan
Last active June 22, 2021 05:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AbhimanyuAryan/3038d17a03ab44403bc9c19388383d29 to your computer and use it in GitHub Desktop.
Save AbhimanyuAryan/3038d17a03ab44403bc9c19388383d29 to your computer and use it in GitHub Desktop.
My goto vscode extension for vuejs
  1. Vetur: Vue Templates
<vue

hit enter populates a starting vue template

open settings.json add "vetur.validation.template": false

add jsconfig.json

vuejs.github.io/vetur/guide/setup.html#project-setup

<template>
</template>
<script>
export default {}
</script>
<style>
<style>
  1. Emmet: For faster html snippet
div>span

ul>li*3>span{Item $}
  1. ESLint

/package.json

...
"eslintConfig": {
    "root": true,
    "env": {
      "node": true
    },
    "extends": [
      "plugin:vue/vue3-essential",
      "eslint:recommended"
    ],
    "parserOptions": {
      "parser": "babel-eslint"
    },
    "rules": {}
 },
...

extends option allows us to specify the rules we want the linter to use. Currently, vue3-essential and eslint:recommended

or use external /.eslintrc.js file which is more flexible than json

module.exports = {
   "root": true,
   "env": {
      "node": true
   },
   "extends": [
      "plugin:vue/vue3-essential",  /* vue/essential for vue2 */
      "eslint:recommended"
    ],
    "parserOptions": {
        "parser": "babel-eslint"
    },
    "rules": {}
}

reload windows ctrl+shift+p > "reload window"

  1. Prettier

add prettier to eslintrc.js

"extends": [
    "@vue/prettier",
    ..
],

fixing linting errors on save

settings.json

"editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
}

configure prettier

/.prettierrc.js

different from eslint. It uses prettierrc.js for personal style

I hate double quotes and single quote mixing in code. Irritates the hell out me and please no semi-colons it's not Java -_-

module.exports = {
    singleQuote: true,
    semi: false

reload vscodium and on save this should fix

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment