mirror of
https://github.com/placeholder-soft/web.git
synced 2026-01-12 17:02:57 +08:00
* add depositTo and withdrawTo functionality for smart contract wallets * tx list updates * compliance check * fix prettier * fix prettier & address nits
20 lines
325 B
JavaScript
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',
|
|
},
|
|
},
|
|
],
|
|
};
|