generated from fabasoad/typescript-setup-action
-
-
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.
Bump winston from 3.6.0 to 3.8.2 (#149)
* build(deps-dev): 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] <support@github.com> * Bump winston from 3.6.0 to 3.8.2 Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fabasoad <fabasoad@gmail.com>
- Loading branch information
1 parent
6eace29
commit 909e8b8
Showing
24 changed files
with
1,229 additions
and
1,691 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 |
---|---|---|
|
@@ -36,4 +36,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
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 |
---|---|---|
@@ -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: 170 | ||
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
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 |
---|---|---|
|
@@ -29,4 +29,4 @@ | |
"^.+\\.ts$": "ts-jest" | ||
}, | ||
"verbose": true | ||
} | ||
} |
Oops, something went wrong.