Second frontend, written in Next.JS + Typescript.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
367 B

4 years ago
  1. root = true
  2. # Unix-style newlines with a newline ending every file
  3. [*]
  4. end_of_line = lf
  5. insert_final_newline = true
  6. # UTF-8 charset
  7. [*.{ts,js,json}]
  8. charset = utf-8
  9. # 2 space indentation
  10. [*.{ts,js,json}]
  11. indent_style = space
  12. indent_size = 2
  13. # Whitespace
  14. [*]
  15. trim_trailing_whitespace = true
  16. # Line length - supported only by few editors
  17. [*]
  18. max_line_length = 100