This repository has been archived on 2025-07-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
vue-with-websockets/frontend/.prettierrc.mjs

12 lines
194 B
JavaScript
Raw Normal View History

const config = {
semi: true,
singleQuote: true,
printWidth: 100,
tabWidth: 2,
trailingComma: 'es5',
bracketSpacing: true,
vueIndentScriptAndStyle: true,
};
export default config;