File tree Expand file tree Collapse file tree
object-lease-console-plugin Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
77ENV PATH="$PATH:~/.local/bin"
88
99# Install golangci-lint
10- RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl git xz-utils pre-commit gitleaks codespell shellcheck && rm -rf /var/lib/apt/lists/* \
10+ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl git xz-utils pre-commit gitleaks codespell shellcheck nodejs npm && rm -rf /var/lib/apt/lists/* \
1111 && GOLANGCI_LINT_VERSION=2.6.2 \
1212 && curl -sSLO "https://github.com/golangci/golangci-lint/releases/download/v${GOLANGCI_LINT_VERSION}/golangci-lint-${GOLANGCI_LINT_VERSION}-linux-amd64.tar.gz" \
1313 && tar -xzf "golangci-lint-${GOLANGCI_LINT_VERSION}-linux-amd64.tar.gz" -C /tmp \
Original file line number Diff line number Diff line change 33 "build" : {
44 "dockerfile" : " Dockerfile"
55 },
6+ "features" : {
7+ "ghcr.io/devcontainers/features/docker-outside-of-docker:1" : {
8+ "moby" : false
9+ }
10+ },
611 "postAttachCommand" : [
712 " /bin/bash" ,
813 " .devcontainer/post-install.sh"
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ if ! command -v golangci-lint >/dev/null 2>&1; then
99 echo " golangci-lint not found, installing v2 via github release tarball"
1010 # We separate update and install to avoid shellcheck SC2015 warnings
1111 apt-get update || true
12- apt-get install -y --no-install-recommends ca-certificates curl xz-utils pre-commit gitleaks codespell shellcheck || true
12+ apt-get install -y --no-install-recommends ca-certificates curl xz-utils pre-commit gitleaks codespell shellcheck nodejs npm || true
1313 GOLANGCI_LINT_VERSION=2.6.2
1414 curl -sSLO " https://github.com/golangci/golangci-lint/releases/download/v${GOLANGCI_LINT_VERSION} /golangci-lint-${GOLANGCI_LINT_VERSION} -linux-amd64.tar.gz" || true
1515 tar -xzf golangci-lint-${GOLANGCI_LINT_VERSION} -linux-amd64.tar.gz -C /tmp || true
Original file line number Diff line number Diff line change @@ -36,3 +36,7 @@ object-lease-operator/Dockerfile.catalog
3636
3737# Ignore vscode AI rules
3838.github /instructions /codacy.instructions.md
39+
40+
41+ # Ignore vscode AI rules
42+ .github \i nstructions \c odacy.instructions.md
Original file line number Diff line number Diff line change 1+ node_modules /
You can’t perform that action at this time.
0 commit comments