misc: add .gitignore + fix cypress files to match JS style guide

Commit ready for merge.
 - Legacy-Id: 19751
This commit is contained in:
nick 2021-12-07 03:42:44 +00:00
parent dddaebd0f3
commit bf4e7474a1
5 changed files with 138 additions and 123 deletions

View file

@ -6,6 +6,7 @@ root = true
# Settings for IETF datatracker # Settings for IETF datatracker
# --------------------------------------------------------- # ---------------------------------------------------------
# PEP8 Style
[*] [*]
indent_style = space indent_style = space
@ -18,6 +19,7 @@ insert_final_newline = false
# Settings for .github folder # Settings for .github folder
# --------------------------------------------------------- # ---------------------------------------------------------
# GitHub Markdown Style
[.github/**] [.github/**]
indent_style = space indent_style = space
@ -29,6 +31,7 @@ insert_final_newline = true
# Settings for client-side JS / Vue files # Settings for client-side JS / Vue files
# --------------------------------------------------------- # ---------------------------------------------------------
# StandardJS Style
[client/**] [client/**]
indent_style = space indent_style = space
@ -37,3 +40,15 @@ end_of_line = lf
charset = utf-8 charset = utf-8
trim_trailing_whitespace = true trim_trailing_whitespace = true
insert_final_newline = true insert_final_newline = true
# Settings for cypress tests
# ---------------------------------------------------------
# StandardJS Style
[cypress/**]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true