Merge branch 'master' into 2913-feature-mirgate-transactions-table-for-x-community-sendcoins

This commit is contained in:
clauspeterhuebner 2023-04-22 19:53:36 +02:00 committed by GitHub
commit 3e8fda0e34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,14 @@
module.exports = { module.exports = {
semi: false,
printWidth: 100, printWidth: 100,
singleQuote: true,
trailingComma: "all",
tabWidth: 2, tabWidth: 2,
useTabs: false,
semi: false,
singleQuote: true,
quoteProps: "as-needed",
jsxSingleQuote: true,
trailingComma: "all",
bracketSpacing: true, bracketSpacing: true,
bracketSameLine: false,
arrowParens: "always",
endOfLine: "auto", endOfLine: "auto",
}; };