From 857784f44f5bd76eade97f9d62c15b990ac2341f Mon Sep 17 00:00:00 2001 From: Rim Date: Wed, 23 Apr 2025 20:24:36 -0400 Subject: [PATCH] update --- .editorconfig | 17 +++++++++++++++++ .gitmodules | 4 +++- .prettierrc | 3 +++ README.md | 6 ++++-- 4 files changed, 27 insertions(+), 3 deletions(-) create mode 100644 .editorconfig create mode 100644 .prettierrc diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..07627f2 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# editorconfig.org +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[**.html] +indent_style = tab +tab_width = 4 + +[**.md] +trim_trailing_whitespace = false diff --git a/.gitmodules b/.gitmodules index 3791524..77c4436 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,10 +1,12 @@ [submodule "gamepad-viewer"] path = gamepad-viewer url = https://github.com/Ahrimdon/gamepad-viewer - branch = develop + branch = main [submodule "gamepad-tester"] path = gamepad-tester url = https://github.com/Ahrimdon/gamepad-tester + branch = main [submodule "dualshock-tools"] path = dualshock-tools url = https://github.com/Ahrimdon/dualshock-tools + branch = main diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..e04cba4 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,3 @@ +{ + "editorconfig": true + } diff --git a/README.md b/README.md index 3924753..16d176a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ +# Awesome Controller + ⚠️ After cloning, run: -``` bash +```bash git submodule update --init --recursive -``` \ No newline at end of file +```