/ Gists / Config - prettier, editorconfig
On gists

Config - prettier, editorconfig

Config files

.prettierrc Raw #

{
  "semi": false,
  "singleQuote": true,
  "useTabs": false,
  "trailingComma": "none",
  "printWidth": 120
}

.editorconfig Raw #

root = true

[*.php]
indent_size = 4
indent_style = tab

[*.js]
indent_size = 2
indent_style = space

[*.vue]
indent_size = 2
indent_style = space