notohh.dev/.prettierrc.js

13 lines
194 B
JavaScript
Raw Normal View History

const config = {
printWidth: 80,
tabWidth: 2,
useTabs: true,
semi: true,
singleQuote: true,
trailingComma: 'es5',
bracketSpacing: true,
arrowParens: 'always',
};
export default config;