xgplayer/.prettierrc.js
2023-04-07 18:59:15 +08:00

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'
}