Last active
February 29, 2020 22:12
-
-
Save laurenclark/ccd0ebf26bcb0fe2fdcd96fb81f6799f to your computer and use it in GitHub Desktop.
Prettier config for Vue/Nuxt
This file contains hidden or 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 = { | |
singleQuote: true, | |
printWidth: 80, | |
'editor.formatOnSave': true, | |
proseWrap: 'always', | |
tabWidth: 4, | |
requireConfig: false, | |
useTabs: false, | |
bracketSpacing: true, | |
jsxBracketSameLine: true, | |
semi: true | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment