all repos — dns @ dbd93bdf362cbb131d3b012ee9ce9fa5b1e22e01

DNS records for my domains, managed via dnscontrol

prettier.config.mjs (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * @see https://prettier.io/docs/en/configuration.html
 * @type {import("prettier").Config}
 */
const config = {
  trailingComma: 'es5',
  printWidth: 100,
  tabWidth: 2,
  semi: false,
  singleQuote: true,
}

export default config