sharedrop/prettier.config.js
Szymon Nowak 48a08f3afc
Update Ember, filer.js and idb.filesystem.js
Still need to update Ember code to fix all deprecations...
2020-07-19 16:59:15 +02:00

14 lines
255 B
JavaScript

// https://prettier.io/docs/en/options.html
module.exports = {
printWidth: 80,
tabWidth: 2,
useTabs: false,
semi: true,
singleQuote: true,
trailingComma: 'all',
bracketSpacing: true,
jsxBracketSameLine: false,
arrowParens: 'always',
};