Files
epg/.prettierrc.js

11 lines
178 B
JavaScript
Raw Normal View History

2022-12-29 23:15:57 +03:00
module.exports = {
tabWidth: 2,
useTabs: false,
2025-01-01 11:15:24 +03:00
endOfLine: 'crlf',
2022-12-29 23:15:57 +03:00
semi: false,
singleQuote: true,
printWidth: 100,
trailingComma: 'none',
arrowParens: 'avoid'
}