diff options
| author | 2026-07-01 21:04:31 +0500 | |
|---|---|---|
| committer | 2026-07-01 21:04:31 +0500 | |
| commit | 88f314ec66347db07bd97e67a24f45913233dee3 (patch) | |
| tree | 61b0bd273224afa36f1a24674d6cfb3e1cb6f441 | |
| download | xhorse-88f314ec66347db07bd97e67a24f45913233dee3.tar.gz xhorse-88f314ec66347db07bd97e67a24f45913233dee3.tar.bz2 xhorse-88f314ec66347db07bd97e67a24f45913233dee3.zip | |
Initial commit
| -rw-r--r-- | .editorconfig | 12 | ||||
| -rw-r--r-- | .gitattributes | 1 | ||||
| -rw-r--r-- | .gitignore | 77 |
3 files changed, 90 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..c1e2c64 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..6313b56 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e07cd2e --- /dev/null +++ b/.gitignore @@ -0,0 +1,77 @@ +# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,c +# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,c + +### C ### +# Prerequisites +*.d + +# Object files +*.o +*.ko +*.obj +*.elf + +# Linker output +*.ilk +*.map +*.exp + +# Precompiled Headers +*.gch +*.pch + +# Libraries +*.lib +*.a +*.la +*.lo + +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib + +# Executables +*.exe +*.out +*.app +*.i*86 +*.x86_64 +*.hex + +# Debug files +*.dSYM/ +*.su +*.idb +*.pdb + +# Kernel Module Compile Results +*.mod* +*.cmd +.tmp_versions/ +modules.order +Module.symvers +Mkfile.old +dkms.conf + +### VisualStudioCode ### +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix + +### VisualStudioCode Patch ### +# Ignore all local history of files +.history +.ionide + +# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,c |
