hassio-plejd/.prettierrc.js

17 lines
246 B
JavaScript
Raw Normal View History

module.exports = {
endOfLine: 'lf',
printWidth: 100,
semi: true,
singleQuote: true,
tabWidth: 2,
2021-01-25 08:05:14 +01:00
trailingComma: 'all',
overrides: [
{
2021-01-25 08:05:14 +01:00
files: ['*.js'],
options: {
2021-01-25 08:05:14 +01:00
trailingComma: 'all',
},
},
],
};