Skip to content

Instantly share code, notes, and snippets.

@mebiusbox
Last active August 28, 2024 17:13
Show Gist options
  • Save mebiusbox/9aa743efab0eebb543a36498c07f9b1e to your computer and use it in GitHub Desktop.
Save mebiusbox/9aa743efab0eebb543a36498c07f9b1e to your computer and use it in GitHub Desktop.
prettier
# 文字数の制限 (default: 80)
printWidth: 119
# 末尾のコロンを削除するかどうか. ["all", "es5", "none"]
trailingComma: "all"
# タブを使うかどうか (.editorconfig)
# useTabs: true
# タブサイズ (.editorconfig)
# tabWidth: 4
# 末尾にセミコロンを付与するか
semi: false
# シングルクォートを使うか
singleQuote: false
# ブラケットの間にスペースを入れるかどうか
bracketSpacing: true
# 閉ブラケットを新規行にするかどうか
bracketSameLine: false

Prettier

.prettierrc.yaml

  • 設定ファイル
  • .prettierrc は JSON でも YAML どちらでも可.なので、.prettierrc.yaml.prettierrc にしても問題ない.
  • .yaml.yml のどちらかについては公式だと .yamlFAQ).しかし、よく使用されいるのは .yml らしい.
  • Prettier は Editorconfig の設定ファイルを参照し、反映する.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment