Prettier 추천 설정
5479 단어 prettier
Prettier란?
추천 설정
/.prettierrc.js
/**
* Prettier Configuration
*/
module.exports = {
// デフォルト設定
// printWidth: 80
// tabWidth: 2,
// useTabs: false,
// semi: ture,
// singleQuote: false,
// quoteProps: "as-needed",
// jsxSingleQuote: false,
// trailingComma: "es5",
// bracketSpacing: true,
// arrowParens: "always",
// rangeStart: 0,
// rangeEnd: Infinity,
// jsxBracketSameLine: false,
// requirePragma: false,
// insertPragma: false,
// proseWrap: "preserve",
// htmlWhitespaceSensitivity: "css",
// vueIndentScriptAndStyle: false,
// endOfLine: "lf",
// embeddedLanguageFormatting: "auto"
// 設定
// printWidth: 120,
// tabWidth: 2,
// useTabs: false,
semi: true,
singleQuote: false,
quoteProps: "as-needed",
jsxSingleQuote: false,
trailingComma: "es5",
bracketSpacing: true,
arrowParens: "always",
rangeStart: 0,
rangeEnd: Infinity,
jsxBracketSameLine: false,
requirePragma: false,
insertPragma: false,
proseWrap: "preserve",
htmlWhitespaceSensitivity: "css",
vueIndentScriptAndStyle: false,
// endOfLine: "lf",
embeddedLanguageFormatting: "auto"
}
보충
// 設定
// printWidth: 120,
// tabWidth: 2,
// useTabs: false,
// endOfLine: "lf",
이 부분은 EditorConfig에서 설정할 수 있으므로 설정하지 않습니다.
EditorConfig의 추천 설정은 여기 → EditorConfig의 추천 설정
다른 부분은 기본 설정으로 유지되지만,
이전 업데이트 기록에 따르면 기본값이 변경될 수 있으므로,
명시적으로 쓰는 것이 좋다고 생각합니다.
※보수시에 버전 업으로 거동이 바뀌면 힘든 일에. . .
Reference
이 문제에 관하여(Prettier 추천 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/yuki0410_/items/abdfb164174d6618d728텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)