14 lines
282 B
JavaScript
14 lines
282 B
JavaScript
module.exports = {
|
|
printWidth: 100,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: true,
|
|
singleQuote: true,
|
|
jsxSingleQuote: true,
|
|
bracketSpacing: true,
|
|
bracketSameLine: false,
|
|
arrowParens: 'avoid',
|
|
vueIndentScriptAndStyle: false,
|
|
endOfLine: 'lf',
|
|
};
|