- 設定ファイル
.prettierrc
は JSON でも YAML どちらでも可.なので、.prettierrc.yaml
を.prettierrc
にしても問題ない..yaml
か.yml
のどちらかについては公式だと.yaml
(FAQ).しかし、よく使用されいるのは.yml
らしい.- Prettier は Editorconfig の設定ファイルを参照し、反映する.
Last active
August 28, 2024 17:13
-
-
Save mebiusbox/9aa743efab0eebb543a36498c07f9b1e to your computer and use it in GitHub Desktop.
prettier
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 文字数の制限 (default: 80) | |
printWidth: 119 | |
# 末尾のコロンを削除するかどうか. ["all", "es5", "none"] | |
trailingComma: "all" | |
# タブを使うかどうか (.editorconfig) | |
# useTabs: true | |
# タブサイズ (.editorconfig) | |
# tabWidth: 4 | |
# 末尾にセミコロンを付与するか | |
semi: false | |
# シングルクォートを使うか | |
singleQuote: false | |
# ブラケットの間にスペースを入れるかどうか | |
bracketSpacing: true | |
# 閉ブラケットを新規行にするかどうか | |
bracketSameLine: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment