mirror of
https://github.com/standardnotes/app.git
synced 2026-01-11 19:56:41 +00:00
11 lines
215 B
JavaScript
11 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',
|
|
}
|