mirror of
https://gitee.com/dromara/Jpom.git
synced 2024-11-30 02:48:17 +08:00
16 lines
237 B
JavaScript
16 lines
237 B
JavaScript
module.exports = {
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
printWidth: 200,
|
|
proseWrap: 'never',
|
|
endOfLine: 'lf',
|
|
overrides: [
|
|
{
|
|
files: '.prettierrc',
|
|
options: {
|
|
parser: 'json',
|
|
},
|
|
}
|
|
],
|
|
};
|