mirror of
https://github.com/wmn1525/grasscutterTools.git
synced 2024-11-22 07:08:15 +00:00
23 lines
414 B
JavaScript
23 lines
414 B
JavaScript
|
module.exports = {
|
||
|
tabWidth: 2,
|
||
|
jsxSingleQuote: true,
|
||
|
jsxBracketSameLine: true,
|
||
|
printWidth: 100,
|
||
|
singleQuote: true,
|
||
|
semi: false,
|
||
|
overrides: [
|
||
|
{
|
||
|
files: '*.json',
|
||
|
options: {
|
||
|
printWidth: 200,
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
arrowParens: 'always',
|
||
|
endOfLine: 'auto',
|
||
|
vueIndentScriptAndStyle: true,
|
||
|
trailingComma: 'all',
|
||
|
proseWrap: 'never',
|
||
|
htmlWhitespaceSensitivity: 'strict',
|
||
|
}
|