-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: Massive reset of the entire codebase. * refactor: New implementation. * fix: Small adjustments to error handling. * deps: Updated the Go dependencies. * refactor: Switch to using a table. * docs: Added a README. * docs: Added a README.
- Loading branch information
Showing
56 changed files
with
3,214 additions
and
1,729 deletions.
There are no files selected for viewing
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,110 @@ | ||
# Write glob rules for ignored files. | ||
# Check syntax on https://deepcode.freshdesk.com/support/solutions/articles/60000531055-how-can-i-ignore-files-or-directories- | ||
# Used by Snyk; https://docs.snyk.io/features/integrations/ide-tools/visual-studio-code-extension-for-snyk-code | ||
|
||
# Hidden directories | ||
.*/ | ||
|
||
# Python | ||
__pycache__/ | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
wheels/ | ||
share/python-wheels/ | ||
*.egg-info/ | ||
MANIFEST | ||
htmlcov/ | ||
cover/ | ||
instance/ | ||
docs/_build/ | ||
target/ | ||
profile_default/ | ||
__pypackages__/ | ||
celerybeat-schedule | ||
env/ | ||
venv/ | ||
ENV/ | ||
env.bak/ | ||
venv.bak/ | ||
/site | ||
cython_debug/ | ||
|
||
# JupyterNotebooks | ||
profile_default/ | ||
|
||
# Hugo | ||
/public/ | ||
/resources/_gen/ | ||
|
||
# VirtualEnv | ||
[Bb]in | ||
[Ii]nclude | ||
[Ll]ib | ||
[Ll]ib64 | ||
[Ll]ocal | ||
[Ss]cripts | ||
|
||
# SublimeText | ||
Package Control.cache/ | ||
Package Control.ca-certs/ | ||
|
||
# Windows | ||
$RECYCLE.BIN/ | ||
|
||
# Linux | ||
*~ | ||
|
||
# Emacs | ||
*~ | ||
#*# | ||
auto-save-list | ||
tramp | ||
*_archive | ||
/eshell/history | ||
/eshell/lastdir | ||
/elpa/ | ||
/auto/ | ||
dist/ | ||
/server/ | ||
|
||
# macOS | ||
Icon | ||
|
||
Network Trash Folder | ||
Temporary Items | ||
|
||
# JetBrains | ||
cmake-build-*/ | ||
out/ | ||
|
||
# Vim | ||
*~ | ||
tags | ||
|
||
# Node | ||
logs | ||
pids | ||
lib-cov | ||
coverage | ||
bower_components | ||
build/Release | ||
node_modules/ | ||
jspm_packages/ | ||
web_modules/ | ||
out | ||
dist | ||
|
||
# Rust | ||
debug/ | ||
target/ | ||
|
||
# Packer | ||
packer_cache/ |
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,67 @@ | ||
{ | ||
"Debug": false, | ||
"Exclude": [ | ||
"\\.7z$", | ||
"\\.avif", | ||
"\\.bak$", | ||
"\\.bin$", | ||
"\\.bz2$", | ||
"\\.cache$", | ||
"\\.css\\.map$", | ||
"\\.dcignore$", | ||
"\\.ecrc$", | ||
"\\.eot$", | ||
"\\.example$", | ||
"\\.gif$", | ||
"\\.go$", | ||
"\\.golangci.yml$", | ||
"\\.goreleaser.yml$", | ||
"\\.gotmpl$", | ||
"\\.gz$", | ||
"\\.ico$", | ||
"\\.jpeg$", | ||
"\\.jpg$", | ||
"\\.js\\.map$", | ||
"\\.log$", | ||
"\\.mp4$", | ||
"\\.otf$", | ||
"\\.patch$", | ||
"\\.pbm", | ||
"\\.pdf$", | ||
"\\.pgm", | ||
"\\.png$", | ||
"\\.pnm", | ||
"\\.ppm", | ||
"\\.snap$", | ||
"\\.svg$", | ||
"\\.tar$", | ||
"\\.terraform-docs\\.yml$", | ||
"\\.terraform\\.lock\\.hcl$", | ||
"\\.ttf$", | ||
"\\.txt$", | ||
"\\.vscode/.*?\\.json$", | ||
"\\.webp$", | ||
"\\.wmv$", | ||
"\\.woff$", | ||
"\\.woff2$", | ||
"\\.zip$", | ||
"^\\.pnp\\.cjs$", | ||
"^\\.pnp\\.js$", | ||
"^\\.pnp\\.loader\\.mjs$", | ||
"^\\.yarn/", | ||
"^Cargo\\.lock$", | ||
"^composer\\.lock$", | ||
"^package-lock\\.json$", | ||
"^yarn\\.lock$", | ||
"cliff\\.toml$", | ||
"go\\.mod$", | ||
"go\\.sum$", | ||
"min\\.css$", | ||
"min\\.js$", | ||
"package-lock\\.json$" | ||
], | ||
"IgnoreDefaults": true, | ||
"NoColor": false, | ||
"SpacesAfterTabs": false, | ||
"Verbose": 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
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
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,3 @@ | ||
#!/bin/bash | ||
# shellcheck disable=2312 | ||
gommit check message "$(cat "$1")" |
Validating CODEOWNERS rules …
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 @@ | ||
# These owners will be the default owners for everything in | ||
# the repo. Unless a later match takes precedence, | ||
# @global-owner1 and @global-owner2 will be requested for | ||
# review when someone opens a pull request. | ||
* @skyzyx |
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 @@ | ||
--- | ||
# https://github.com/dcoapp/app | ||
allowRemediationCommits: | ||
individual: true | ||
|
||
require: | ||
members: 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,28 @@ | ||
--- | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
# ---------------------------------------------------------------------------- | ||
# goplicate-start:always | ||
- package-ecosystem: docker | ||
directory: /.devcontainer | ||
schedule: | ||
interval: daily | ||
|
||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: daily | ||
# goplicate-end:always | ||
|
||
# ---------------------------------------------------------------------------- | ||
# goplicate-start:go | ||
- package-ecosystem: gomod # See documentation for possible values | ||
directory: / # Location of package manifests | ||
schedule: | ||
interval: daily | ||
# goplicate-end:go |
Oops, something went wrong.