This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/prettier.config.js

11 lines
186 B
JavaScript
Raw Normal View History

2020-03-08 17:52:42 +00:00
module.exports = {
endOfLine: 'lf',
printWidth: 80,
proseWrap: 'always',
quoteProps: 'as-needed',
singleQuote: true,
tabWidth: 2,
trailingComma: 'all',
useTabs: false,
}