mirror of
https://github.com/vdalex25/rtsp-to-web-player.git
synced 2025-09-26 12:51:21 +08:00
18 lines
323 B
JavaScript
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"
|
|
}
|
|
}
|
|
]
|
|
};
|