選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

.editorconfig 276B

12345678910111213
  1. root = true
  2. [*]
  3. indent_style = tab;
  4. insert_final_newline = true;
  5. quote_type = auto;
  6. space_after_anonymous_functions = true;
  7. space_after_control_statements = true;
  8. spaces_around_operators = true;
  9. trim_trailing_whitespace = true;
  10. spaces_in_brackets = false;
  11. end_of_line = lf;