13 lines
222 B
TypeScript
13 lines
222 B
TypeScript
import {type Config} from 'prettier'
|
|
|
|
const config: Config = {
|
|
semi: false,
|
|
arrowParens: 'avoid',
|
|
bracketSameLine: true,
|
|
bracketSpacing: false,
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
}
|
|
|
|
export default config
|