diff --git a/.github/workflows/mega-linter.yml b/.github/workflows/mega-linter.yml index 8453723..f5523c1 100644 --- a/.github/workflows/mega-linter.yml +++ b/.github/workflows/mega-linter.yml @@ -55,8 +55,10 @@ jobs: DEFAULT_BRANCH: main GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} DISABLE_LINTERS: MARKDOWN_MARKDOWN_LINK_CHECK,REPOSITORY_SECRETLINT,SPELL_CSPELL + ACTION_ACTIONLINT_DISABLE_ERRORS: true REPOSITORY_CHECKOV_DISABLE_ERRORS: true REPOSITORY_KICS_DISABLE_ERRORS: true + REPOSITORY_TRIVY_DISABLE_ERRORS: true # Upload Mega-Linter artifacts. # They will be available on Github action page "Artifacts" section diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..acc7854 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,28 @@ +--- +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.6.0 + hooks: + - id: check-added-large-files + - id: check-executables-have-shebangs + - id: check-merge-conflict + - id: check-shebang-scripts-are-executable + - id: check-symlinks + - id: check-yaml + - id: debug-statements + - id: end-of-file-fixer + - id: forbid-submodules + - id: mixed-line-ending + - id: trailing-whitespace + + - repo: https://github.com/igorshubovych/markdownlint-cli + rev: v0.42.0 + hooks: + - id: markdownlint-fix + args: ["--ignore", "LICENSE.md", "--disable", "~MD013"] + + - repo: https://github.com/thlorenz/doctoc + rev: v2.2.0 + hooks: + - id: doctoc + args: ["--update-only"] diff --git a/.zsh-quickstart-local-plugins-example b/.zsh-quickstart-local-plugins-example old mode 100644 new mode 100755 index ae3c596..1332f74 --- a/.zsh-quickstart-local-plugins-example +++ b/.zsh-quickstart-local-plugins-example @@ -93,6 +93,9 @@ fi # Supercharge your history search with fzf zgenom load unixorn/fzf-zsh-plugin +# Soup up command history search with fzf. +zgen load unixorn/fzf-zsh-plugin + # Add my bitbucket git helpers plugin. zgenom load unixorn/bitbucket-git-helpers.plugin.zsh diff --git a/Contributing.md b/Contributing.md index 2c6858b..dd80078 100644 --- a/Contributing.md +++ b/Contributing.md @@ -8,6 +8,7 @@ The **ZSH Quickstart Kit** is a batteries-included starter kit for using `zsh`. - [Contribution Guidelines](#contribution-guidelines) - [New Features](#new-features) +- [Readme](#readme) diff --git a/zsh/.zgen-setup b/zsh/.zgen-setup old mode 100644 new mode 100755 diff --git a/zsh/.zsh_aliases b/zsh/.zsh_aliases old mode 100644 new mode 100755 diff --git a/zsh/.zsh_functions b/zsh/.zsh_functions old mode 100644 new mode 100755