mirror of
https://github.com/zhigang1992/react.git
synced 2026-02-07 09:09:30 +08:00
11 lines
186 B
JavaScript
11 lines
186 B
JavaScript
module.exports = {
|
|
semi: false,
|
|
tabWidth: 2,
|
|
printWidth: 100,
|
|
trailingComma: 'all',
|
|
arrowParens: 'avoid',
|
|
singleQuote: true,
|
|
jsxBracketSameLine: true,
|
|
endOfLine: 'lf',
|
|
}
|