summary refs log tree commit diff
path: root/prettier.config.mjs
blob: d487b0dc42e57ecd19746ca163b6591842d5a5d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * @see https://prettier.io/docs/configuration
 * @type {import("prettier").Config}
 */
const config = {
    trailingComma: 'none',
    tabWidth: 4,
    semi: true,
    singleQuote: true,
    arrowParens: 'avoid'
};

export default config;