hassio-plejd/.prettierrc.js
2021-01-25 08:05:14 +01:00

16 lines
246 B
JavaScript

module.exports = {
endOfLine: 'lf',
printWidth: 100,
semi: true,
singleQuote: true,
tabWidth: 2,
trailingComma: 'all',
overrides: [
{
files: ['*.js'],
options: {
trailingComma: 'all',
},
},
],
};