Files
web/prettier.config.js
Lukas 71b9ec3924 add depositTo and withdrawTo functionality for smart contract wallets (#9)
* add depositTo and withdrawTo functionality for smart contract wallets

* tx list updates

* compliance check

* fix prettier

* fix prettier & address nits
2023-09-25 16:44:30 -04:00

20 lines
325 B
JavaScript

module.exports = {
arrowParens: 'always',
bracketSameLine: false,
jsxSingleQuote: false,
printWidth: 100,
semi: true,
singleQuote: true,
tabWidth: 2,
trailingComma: 'all',
useTabs: false,
overrides: [
{
files: '*.json',
options: {
parser: 'json-stringify',
},
},
],
};