Fix up prettier config, apply to more files (#10542)

This commit is contained in:
Samuel Newman
2026-05-20 13:53:19 +03:00
committed by GitHub
parent 70a1a665ed
commit 5088f00c35
4 changed files with 69 additions and 38 deletions
+12
View File
@@ -0,0 +1,12 @@
import {type Config} from 'prettier'
const config: Config = {
semi: false,
arrowParens: 'avoid',
bracketSameLine: true,
bracketSpacing: false,
singleQuote: true,
trailingComma: 'all',
}
export default config