use config.ts, apply prettier to more files

This commit is contained in:
Samuel Newman
2026-05-19 10:16:34 +03:00
parent af6041d7bc
commit 76f50ec5e2
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