mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-28 16:06:47 +01:00
14 lines
262 B
JavaScript
14 lines
262 B
JavaScript
module.exports = {
|
|
arrowParens: 'avoid',
|
|
bracketSpacing: true,
|
|
jsxBracketSameLine: false,
|
|
jsxSingleQuote: false,
|
|
quoteProps: 'as-needed',
|
|
singleQuote: true,
|
|
semi: true,
|
|
printWidth: 100,
|
|
useTabs: false,
|
|
tabWidth: 2,
|
|
trailingComma: 'none'
|
|
};
|