Skip to content

Instantly share code, notes, and snippets.

@naokazuterada
Last active February 4, 2017 14:03
Show Gist options
  • Save naokazuterada/9cc2ff9aebde18282f2ecd893c8f3497 to your computer and use it in GitHub Desktop.
Save naokazuterada/9cc2ff9aebde18282f2ecd893c8f3497 to your computer and use it in GitHub Desktop.
Lint vuejs files

VuejsをESLintする (globalのeslintからはlocalのeslint-plugin-vueがみれないのでlocalにインストールすること)

yarn add --dev eslint eslint-plugin-vue eslint-config-vue

.eslintrc

{
  ...
  "extends": ["vue", "eslint:recommended"],
  "plugins": ["vue"],
  ...
}

Auto fix

eslint --fix  --ext .vue ./source
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment