mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2025-12-05 18:20:39 -08:00
13 lines
262 B
JavaScript
13 lines
262 B
JavaScript
module.exports = {
|
|
semi: true,
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
trailingComma: 'all',
|
|
printWidth: 140,
|
|
arrowParens: 'always',
|
|
jsxBracketSameLine: true,
|
|
jsxSingleQuote: false,
|
|
quoteProps: 'as-needed',
|
|
bracketSpacing: true,
|
|
useTabs: false,
|
|
};
|