mirror of
https://github.com/standardnotes/mobile.git
synced 2026-01-10 08:48:10 -05:00
12 lines
215 B
JavaScript
12 lines
215 B
JavaScript
module.exports = {
|
|
arrowParens: 'avoid',
|
|
bracketSpacing: true,
|
|
jsxSingleQuote: false,
|
|
quoteProps: 'as-needed',
|
|
semi: false,
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
printWidth: 120,
|
|
trailingComma: 'all',
|
|
}
|