-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new file: .gitignore new file: .trunk/.gitignore
- Loading branch information
Showing
13 changed files
with
2,592 additions
and
87 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
# VSCODE workspace | ||
.vscode/* | ||
.vscode/settings.json | ||
.vscode/tasks.json | ||
.vscode/launch.json | ||
.vscode/extensions.json | ||
*.code-workspace | ||
|
||
# Exclude for security reasons | ||
.history/ | ||
.dccache | ||
.env | ||
|
||
# Zsh compiled script + zrecompile backup | ||
*.zwc | ||
*.zwc.old | ||
|
||
# Zsh completion-optimization dumpfile | ||
*zcompdump* | ||
|
||
# Zsh zcalc history | ||
.zcalc_history | ||
|
||
# A popular plugin manager's files | ||
._zi | ||
._zinit | ||
._zplugin | ||
.zi_lastupd | ||
.zinit_lastupd | ||
.zplugin_lstupd | ||
|
||
# z-shell/zshelldoc tool's files | ||
build | ||
zsdoc/data | ||
docs/zsdoc/data | ||
|
||
# ohmyzsh/ohmyzsh/plugins/per-directory-history plugin's files | ||
# (when set-up to store the history in the local directory) | ||
.directory_history | ||
|
||
# MichaelAquilina/zsh-autoswitch-virtualenv plugin's files | ||
# (for Zsh plugins using Python) | ||
.venv | ||
|
||
# Zunit tests' output | ||
/tests/_output/* | ||
!/tests/_output/.gitkeep | ||
|
||
### 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 | ||
|
||
# Repository specific files | ||
test/ | ||
txt/ | ||
*.txt | ||
*.zwc | ||
*.o | ||
*.o.c | ||
*.orig | ||
*.a | ||
*.so | ||
*.dll | ||
*~ | ||
.*.sw? | ||
\#* | ||
|
||
CVS | ||
.#* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
*out | ||
*logs | ||
*actions | ||
*notifications | ||
plugins | ||
user_trunk.yaml | ||
user.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Autoformatter friendly markdownlint config (all formatting rules disabled) | ||
default: true | ||
blank_lines: false | ||
bullet: false | ||
html: false | ||
indentation: false | ||
line_length: false | ||
spaces: false | ||
url: false | ||
whitespace: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
enable=all | ||
source-path=SCRIPTDIR | ||
disable=SC2154 | ||
disable=SC1090 | ||
disable=SC1091 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
version: 0.1 | ||
cli: | ||
version: 1.1.0 | ||
plugins: | ||
sources: | ||
- id: trunk | ||
ref: v0.0.6 | ||
uri: https://github.com/trunk-io/plugins | ||
lint: | ||
enabled: | ||
- git-diff-check | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
runtimes: | ||
enabled: | ||
- [email protected] | ||
- [email protected] | ||
actions: | ||
enabled: | ||
- trunk-announce | ||
- trunk-check-pre-push | ||
- trunk-fmt-pre-commit | ||
- trunk-upgrade-available |
Oops, something went wrong.