-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump @actions/core from 1.9.1 to 1.10.0 (#67)
* Bump snyk from 1.852.0 to 1.996.0 Bumps [snyk](https://github.com/snyk/snyk) from 1.852.0 to 1.996.0. - [Release notes](https://github.com/snyk/snyk/releases) - [Commits](snyk/cli@v1.852.0...v1.996.0) --- updated-dependencies: - dependency-name: snyk dependency-type: direct:development ... Signed-off-by: dependabot[bot] <[email protected]> * Bump @actions/core from 1.9.1 to 1.10.0 * Add pre-commit badge Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fabasoad <[email protected]>
- Loading branch information
1 parent
7f06e58
commit 6d1269c
Showing
24 changed files
with
631 additions
and
641 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 |
---|---|---|
|
@@ -32,4 +32,4 @@ | |
"require-jsdoc": "off", | ||
"semi": "off" | ||
} | ||
} | ||
} |
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,11 @@ | ||
--- | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" | ||
reviewers: | ||
- "fabasoad" | ||
labels: | ||
- "dependencies" |
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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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 |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
"statements": 85.71, | ||
"extension": ["js"], | ||
"reporter": ["lcov","text","text-summary"] | ||
} | ||
} |
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,71 @@ | ||
--- | ||
default_stages: ["commit"] | ||
exclude: ^(.gitleaks\.toml|dist/.*\.js|coverage/.*)$ | ||
repos: | ||
- repo: local | ||
hooks: | ||
- id: build | ||
name: Build | ||
entry: yarn run build | ||
language: system | ||
pass_filenames: false | ||
verbose: true | ||
- id: test | ||
name: Unit tests | ||
entry: yarn test | ||
language: system | ||
pass_filenames: false | ||
verbose: true | ||
stages: ["push"] | ||
# Security | ||
- repo: https://github.com/Yelp/detect-secrets | ||
rev: v1.3.0 | ||
hooks: | ||
- id: detect-secrets | ||
stages: ["commit", "push"] | ||
- repo: https://github.com/zricethezav/gitleaks | ||
rev: v8.13.0 | ||
hooks: | ||
- id: gitleaks | ||
stages: ["commit", "push"] | ||
- repo: https://github.com/fabasoad/pre-commit-snyk | ||
rev: v0.1.0 | ||
hooks: | ||
- id: snyk-test | ||
stages: ["push"] | ||
# TypeScript | ||
- repo: https://github.com/pre-commit/mirrors-eslint | ||
rev: v8.24.0 | ||
hooks: | ||
- id: eslint | ||
args: ['--fix'] | ||
files: \.[jt]sx?$ | ||
types: [file] | ||
exclude: ^dist/.*\.js$ | ||
# Markdown | ||
- repo: https://github.com/igorshubovych/markdownlint-cli | ||
rev: v0.32.2 | ||
hooks: | ||
- id: markdownlint | ||
# Yaml | ||
- repo: https://github.com/adrienverge/yamllint | ||
rev: v1.28.0 | ||
hooks: | ||
- id: yamllint | ||
args: ["-c", ".yamllint.yml"] | ||
# Other | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.3.0 | ||
hooks: | ||
- id: check-merge-conflict | ||
- id: check-json | ||
- id: detect-private-key | ||
stages: ["commit", "push"] | ||
- id: end-of-file-fixer | ||
- id: mixed-line-ending | ||
args: ["--fix=lf"] | ||
- id: no-commit-to-branch | ||
- id: trailing-whitespace | ||
ci: | ||
autofix_prs: false | ||
skip: [build, eslint, test] |
This file was deleted.
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 |
---|---|---|
|
@@ -3,5 +3,5 @@ extends: default | |
|
||
rules: | ||
line-length: | ||
max: 150 | ||
level: warning | ||
max: 190 | ||
level: error |
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
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
Oops, something went wrong.