.editorconfig 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #
  2. # Copyright (c) 2019 Of Him Code Technology Studio
  3. # Jpom is licensed under Mulan PSL v2.
  4. # You can use this software according to the terms and conditions of the Mulan PSL v2.
  5. # You may obtain a copy of Mulan PSL v2 at:
  6. # http://license.coscl.org.cn/MulanPSL2
  7. # THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
  8. # See the Mulan PSL v2 for more details.
  9. #
  10. # http://editorconfig.org
  11. root = true
  12. [*]
  13. indent_style = tab
  14. charset = utf-8
  15. end_of_line = lf
  16. trim_trailing_whitespace = true
  17. insert_final_newline = true
  18. max_line_length = 200
  19. [*.{json,yml}]
  20. indent_style = space
  21. indent_size = 2
  22. max_line_length = off
  23. [*.md]
  24. insert_final_newline = false
  25. trim_trailing_whitespace = false
  26. max_line_length = off
  27. indent_style = space
  28. indent_size = 2
  29. [*.bat]
  30. end_of_line = crlf
  31. [*.sh]
  32. end_of_line = lf
  33. indent_style = space
  34. indent_size = 2
  35. max_line_length = off
  36. [*.{vue,js,ts}]
  37. indent_style = space
  38. indent_size = 2
  39. [*.ts]
  40. indent_style = space
  41. indent_size = 2
  42. [*.{java,xml,sql}]
  43. indent_style = space
  44. indent_size = 4