Welcome to mirror list, hosted at ThFree Co, Russian Federation.

prettier.config.js - github.com/jakewies/hugo-theme-codex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d174dc08b9d4028306a1dee8f2316671383fad2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = {
  arrowParens: "avoid",
  bracketSpacing: false,
  endOfLine: "lf",
  htmlWhitespaceSensitivity: "css",
  printWidth: 80,
  proseWrap: "always",
  semi: true,
  singleQuote: false,
  tabWidth: 2,
  trailingComma: "all",
  useTabs: false,
};