Skip to content

Instantly share code, notes, and snippets.

@MichaelGitArt
Last active April 6, 2021 05:37
Show Gist options
  • Save MichaelGitArt/d9211d3a5a048d50a5e127e566fc7eda to your computer and use it in GitHub Desktop.
Save MichaelGitArt/d9211d3a5a048d50a5e127e566fc7eda to your computer and use it in GitHub Desktop.
eslint-prettier
module.exports = {
rules: {
'no-unused-vars': ['warn'],
'vue/no-unused-components': ['warn'],
'vue/component-name-in-template-casing': [
'warn',
'PascalCase',
{
registeredComponentsOnly: false,
},
],
},
};
{
"singleQuote": true,
"trailingComma": "es5"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment