mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
28 lines
626 B
JavaScript
28 lines
626 B
JavaScript
module.exports = { // https://prettier.io/docs/en/options.html
|
|
arrowParens: 'avoid',
|
|
// bracketSameLine: false,
|
|
// bracketSpacing: true,
|
|
// embeddedLanguageFormatting: 'auto',
|
|
// htmlWhitespaceSensitivity: 'css',
|
|
// insertPragma: false,
|
|
// jsxSingleQuote: false,
|
|
printWidth: 120,
|
|
// proseWrap: 'preserve',
|
|
// quoteProps: 'as-needed',
|
|
// requirePragma: false,
|
|
// semi: true,
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
trailingComma: 'none',
|
|
// useTabs: false,
|
|
// vueIndentScriptAndStyle: false,
|
|
overrides: [
|
|
{
|
|
files: '*.html',
|
|
options: {
|
|
parser: 'html',
|
|
},
|
|
},
|
|
],
|
|
};
|