Skip to content

Commit

Permalink
modified: .editorconfig
Browse files Browse the repository at this point in the history
	new file:   .gitignore
	new file:   .trunk/.gitignore
  • Loading branch information
ss-o committed Nov 19, 2022
1 parent 787e3d8 commit 3339a52
Show file tree
Hide file tree
Showing 13 changed files with 2,592 additions and 87 deletions.
360 changes: 330 additions & 30 deletions .editorconfig

Large diffs are not rendered by default.

119 changes: 119 additions & 0 deletions .gitignore
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
.#*
7 changes: 7 additions & 0 deletions .trunk/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
*out
*logs
*actions
*notifications
plugins
user_trunk.yaml
user.yaml
10 changes: 10 additions & 0 deletions .trunk/config/.markdownlint.yaml
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
5 changes: 5 additions & 0 deletions .trunk/config/.shellcheckrc
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
27 changes: 27 additions & 0 deletions .trunk/trunk.yaml
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
Loading

0 comments on commit 3339a52

Please sign in to comment.