settings.json 879 B

1234567891011121314151617181920212223242526272829
  1. {
  2. // 既定の改行文字。LF の場合には \n を CRLF の場合には \r\n を使用してください。
  3. "files.eol": "\n",
  4. // 指定した構文に対してプロファイルを定義するか、特定の規則がある独自のプロファイルをご使用ください。
  5. "emmet.syntaxProfiles": {
  6. "javascript": "jsx"
  7. },
  8. // use stylelint-plus
  9. // see https://qiita.com/y-w/items/bd7f11013fe34b69f0df#vs-code%E3%81%A8%E7%B5%84%E3%81%BF%E5%90%88%E3%82%8F%E3%81%9B%E3%82%8B
  10. "css.validate": false,
  11. "scss.validate": false,
  12. "[css]": {
  13. "editor.formatOnSave": true
  14. },
  15. "[scss]": {
  16. "editor.formatOnSave": true
  17. },
  18. "stylelint.autoFixOnSave": true,
  19. // for vscode-eslint
  20. "[javascript]": {
  21. "editor.formatOnSave": false
  22. },
  23. "editor.codeActionsOnSave": {
  24. "source.fixAll.eslint": true,
  25. "source.fixAll.markdownlint": true
  26. }
  27. }