Files
RTSPtoWEBPlayer/.prettierrc.js
vdalex 6147a019f8 renew
2024-02-13 11:35:58 +03:00

18 lines
323 B
JavaScript

module.exports = {
printWidth: 100,
bracketSpacing: false,
useTabs: true,
singleQuote: true,
trailingComma: 'all',
arrowParens: 'avoid',
endOfLine: 'lf',
overrides: [
{
files: "*.js",
options: {
parser: "flow"
}
}
]
};