Compare commits

..

1 Commits

Author SHA1 Message Date
dependabot[bot]
e081596ac0
chore(deps-dev): bump @ts-dev-tools/core
Bumps the npm-dev-dependencies group with 1 update in the / directory: [@ts-dev-tools/core](https://github.com/escemi-tech/ts-dev-tools).


Updates `@ts-dev-tools/core` from 1.6.2 to 1.8.9
- [Release notes](https://github.com/escemi-tech/ts-dev-tools/releases)
- [Commits](https://github.com/escemi-tech/ts-dev-tools/compare/@ts-dev-tools/core@1.6.2...@ts-dev-tools/core@1.8.9)

---
updated-dependencies:
- dependency-name: "@ts-dev-tools/core"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-04-25 04:12:45 +00:00
8 changed files with 545 additions and 233 deletions

View File

@ -52,15 +52,3 @@ updates:
- "@actions/*"
npm-dev-dependencies:
dependency-type: development
- package-ecosystem: "devcontainers"
open-pull-requests-limit: 20
directory: "/"
schedule:
interval: weekly
day: friday
time: "04:00"
groups:
devcontainers-dependencies:
patterns:
- "*"

View File

@ -1,3 +0,0 @@
{
"ignore": ["**/dist/**"]
}

View File

@ -4,7 +4,6 @@ on:
workflow_call:
permissions:
actions: read
contents: read
packages: read
security-events: write

View File

@ -11,7 +11,6 @@ on:
- cron: "25 8 * * 1"
permissions:
actions: read
contents: read
packages: read
security-events: write

View File

@ -6,7 +6,6 @@ on:
branches: [main]
permissions:
actions: read
contents: read
packages: read
statuses: write

View File

@ -3,7 +3,6 @@ FROM ghcr.io/super-linter/super-linter:slim-v7
ARG UID=1000
ARG GID=1000
RUN chown -R ${UID}:${GID} /github/home
USER ${UID}:${GID}
ENV RUN_LOCAL=true

View File

@ -8,9 +8,9 @@ lint: ## Execute linting
lint-fix: ## Execute linting and fix
$(call run_linter, \
-e FIX_JSON_PRETTIER=true \
-e FIX_YAML_PRETTIER=true \
-e FIX_MARKDOWN=true \
-e FIX_JSON_PRETTIER=true \
-e FIX_MARKDOWN_PRETTIER=true \
-e FIX_NATURAL_LANGUAGE=true)
@ -18,13 +18,12 @@ define run_linter
DEFAULT_WORKSPACE="$(CURDIR)"; \
LINTER_IMAGE="linter:latest"; \
VOLUME="$$DEFAULT_WORKSPACE:$$DEFAULT_WORKSPACE"; \
docker build --build-arg UID=$(shell id -u) --build-arg GID=$(shell id -g) --tag $$LINTER_IMAGE .; \
docker build --build-arg UID=$(id -u) --build-arg GID=$(id -g) --tag $$LINTER_IMAGE .; \
docker run \
-e DEFAULT_WORKSPACE="$$DEFAULT_WORKSPACE" \
-e FILTER_REGEX_INCLUDE="$(filter-out $@,$(MAKECMDGOALS))" \
-e IGNORE_GITIGNORED_FILES=true \
-e KUBERNETES_KUBECONFORM_OPTIONS="--schema-location default --schema-location 'https://raw.githubusercontent.com/datreeio/CRDs-catalog/main/{{.Group}}/{{.ResourceKind}}_{{.ResourceAPIVersion}}.json'" \
-e FILTER_REGEX_EXCLUDE=dist/**/* \
-e VALIDATE_JSCPD=false \
-e VALIDATE_TYPESCRIPT_STANDARD=false \
-e VALIDATE_TYPESCRIPT_ES=false \
-e VALIDATE_TYPESCRIPT_PRETTIER=false \

750
package-lock.json generated

File diff suppressed because it is too large Load Diff