Files
trezor-suite/.prettierrc
Daniel Suchý 6253be3f9f chore: Prettier refactor, update, add CI check (#4950)
* chore: remove redundant prettier, gitignore files

* fix: Fix missign html opening tag

* chore: upgrade prettier

* chore(ci): Add prettier check to CI

* chore(eslint): turn off prettier-eslint

* chore: fix formatting of translations

* chore: run prettier over whole codebase
2022-02-17 18:15:59 +01:00

27 lines
571 B
Plaintext

{
"printWidth": 100,
"arrowParens": "avoid",
"bracketSpacing": true,
"singleQuote": true,
"semi": true,
"trailingComma": "all",
"tabWidth": 4,
"useTabs": false,
"bracketSameLine": false,
"overrides": [
{
"files": ["*.yml"],
"options": {
"tabWidth": 2,
"singleQuote": false
}
},
{
"files": ["packages/suite-data/files/translations/*.json"],
"options": {
"tabWidth": 2
}
}
]
}