notea/.prettierrc
tecc b5dae24448
style(change): Modifications to style
arrow-parens: Arrow functions are now required to have parentheses around arguments (i.e. `(_) => {}` is good, but `_ => {}` is not)
2022-09-04 01:20:07 +02:00

9 lines
144 B
Plaintext

{
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"useTabs": false,
"arrowParens": "always",
"bracketSpacing": true
}