Last active
April 6, 2021 05:37
-
-
Save MichaelGitArt/d9211d3a5a048d50a5e127e566fc7eda to your computer and use it in GitHub Desktop.
eslint-prettier
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
rules: { | |
'no-unused-vars': ['warn'], | |
'vue/no-unused-components': ['warn'], | |
'vue/component-name-in-template-casing': [ | |
'warn', | |
'PascalCase', | |
{ | |
registeredComponentsOnly: false, | |
}, | |
], | |
}, | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"singleQuote": true, | |
"trailingComma": "es5" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment