mirror of
https://github.com/kieraneglin/pinchflat.git
synced 2026-01-23 02:24:24 +00:00
13 lines
250 B
JavaScript
13 lines
250 B
JavaScript
module.exports = {
|
|
printWidth: 100,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: false,
|
|
singleQuote: true,
|
|
jsxSingleQuote: false,
|
|
trailingComma: 'none',
|
|
bracketSpacing: true,
|
|
arrowParens: 'always',
|
|
requirePragma: false,
|
|
endOfLine: 'lf'
|
|
}
|