mirror of
https://gitee.com/dromara/Jpom.git
synced 2024-12-02 11:58:01 +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',
|
||
|
},
|
||
|
}
|
||
|
],
|
||
|
};
|