【備忘録】Reactのprettier設定
.prettierrc.json
{
"arrowParens": "avoid", //単一引数時に()の有無
"bracketSpacing": true, // 単語間の空白スペース有無
"htmlWhitespaceSensitivity": "css", //cssの設定
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 80, //80文字を超えたら改行する。
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": false, //セミコロンなし
"singleQuote": true, //シングルクオート
"tabWidth": 2, //tab幅はスペース2
"trailingComma": "all",
"useTabs": false
}
Author And Source
この問題について(【備忘録】Reactのprettier設定), 我々は、より多くの情報をここで見つけました https://qiita.com/kouji0705/items/35fdb5eb3794bb53dadc著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .