mirror of
https://github.com/bytedance/xgplayer.git
synced 2025-04-05 03:05:02 +08:00
21 lines
502 B
JavaScript
21 lines
502 B
JavaScript
// You can rename this file with name ".prettierrc.js" and
|
|
// place it into the root directory of your project.
|
|
// https://prettier.io/docs/en/options.html
|
|
module.exports = {
|
|
printWidth: 90,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: false,
|
|
singleQuote: true,
|
|
trailingComma: 'none',
|
|
arrowParens: 'avoid',
|
|
rangeStart: 0,
|
|
rangeEnd: Infinity,
|
|
bracketSpacing: true,
|
|
requirePragma: false,
|
|
insertPragma: false,
|
|
proseWrap: 'always',
|
|
htmlWhitespaceSensitivity: 'css',
|
|
endOfLine: 'auto'
|
|
}
|