33 lines
705 B
JavaScript
33 lines
705 B
JavaScript
|
|
/**
|
||
|
|
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
|
||
|
|
* No deletion without permission, or be held responsible to law.
|
||
|
|
* @author ThinkGem
|
||
|
|
*/
|
||
|
|
export default {
|
||
|
|
printWidth: 120,
|
||
|
|
tabWidth: 2,
|
||
|
|
useTabs: false,
|
||
|
|
semi: true,
|
||
|
|
vueIndentScriptAndStyle: true,
|
||
|
|
singleQuote: true,
|
||
|
|
quoteProps: 'as-needed',
|
||
|
|
bracketSpacing: true,
|
||
|
|
trailingComma: 'all',
|
||
|
|
jsxSingleQuote: false,
|
||
|
|
arrowParens: 'always',
|
||
|
|
insertPragma: false,
|
||
|
|
requirePragma: false,
|
||
|
|
proseWrap: 'preserve',
|
||
|
|
htmlWhitespaceSensitivity: 'strict',
|
||
|
|
endOfLine: 'auto',
|
||
|
|
plugins: ['prettier-plugin-packagejson'],
|
||
|
|
overrides: [
|
||
|
|
{
|
||
|
|
files: '.*rc',
|
||
|
|
options: {
|
||
|
|
parser: 'json',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
],
|
||
|
|
};
|