hassio-plejd/.prettierrc.js

17 lines
258 B
JavaScript
Raw Normal View History

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