Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .mega-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ DISABLE_LINTERS:
- SPELL_PROSELINT
- REPOSITORY_GIT_DIFF
- REPOSITORY_SEMGREP
- REPOSITORY_DUMMY
- REPOSITORY_SECRETLINT
- REPOSITORY_SYFT
- REPOSITORY_TRIVY_SBOM
Expand All @@ -29,7 +30,6 @@ DISABLE_LINTERS:
- YAML_YAMLLINT
- XML_XMLLINT
DISABLE_ERRORS_LINTERS:
- REPOSITORY_GRYPE
- SPELL_LYCHEE

GITHUB_STATUS_REPORTER: false
Expand All @@ -51,10 +51,10 @@ SPELL_LYCHEE_UNSECURED_ENV_VARIABLES:

REPORTERS_MARKDOWN_SUMMARY_TYPE: table-sections
# LLM Advisor
LLM_ADVISOR_LEVEL: error
LLM_ADVISOR_LEVEL: WARNING

# Choose your provider and model
LLM_PROVIDER: openai # openai, anthropic, google, huggingface, mistral, deepseek, grok, ollama
LLM_MODEL_NAME: gpt-4.1-mini
LLM_MAX_TOKENS: 1000
LLM_TEMPERATURE: 0.1
LLM_MAX_TOKENS: "1000"
LLM_TEMPERATURE: "0.1"
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@slack/web-api": "^7.9.3",
"@supercharge/promise-pool": "^3.2.0",
"@xmldom/xmldom": "^0.9.8",
"axios": "^1.10.0",
"axios": "^0.21.1",
"azure-devops-node-api": "^14.1.0",
"bitbucket": "^2.12.0",
"chalk": "^5.4.1",
Expand Down Expand Up @@ -318,4 +318,4 @@
},
"exports": "./lib/index.js",
"type": "module"
}
}
1 change: 1 addition & 0 deletions src/commands/hardis/project/deploy/smart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -677,6 +677,7 @@ If testlevel=RunRepositoryTests, can contain a regular expression to keep only c
'[DeltaDeployment] If you want to use delta deployment anyway, define env variable USE_DELTA_DEPLOYMENT_AFTER_MERGE=true'
)
);
const unusedVar = 123; // <-- ESLint error: 'unusedVar' is assigned a value but never used
Copy link

Copilot AI Jul 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The variable unusedVar is declared but never used. Remove it to clean up the code.

Suggested change
const unusedVar = 123; // <-- ESLint error: 'unusedVar' is assigned a value but never used

Copilot uses AI. Check for mistakes.
return false;
}
if (process.env?.ALWAYS_ENABLE_DELTA_DEPLOYMENT === 'true') {
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4493,9 +4493,9 @@ aws4@^1.12.0:
resolved "https://registry.npmjs.org/aws4/-/aws4-1.13.1.tgz"
integrity sha512-u5w79Rd7SU4JaIlA/zFqG+gOiuq25q5VLyZ8E+ijJeILuTxVzZgp2CaGw/UTw6pXYN9XMO9yiqj/nEHmhTG5CA==

axios@^1.10.0, axios@^1.8.3:
version "1.10.0"
resolved "https://registry.yarnpkg.com/axios/-/axios-1.10.0.tgz#af320aee8632eaf2a400b6a1979fa75856f38d54"
axios@^0.21.1, axios@^1.8.3:
version "0.21.1"
resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.1.tgz#af320aee8632eaf2a400b6a1979fa75856f38d54"
integrity sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw==
dependencies:
follow-redirects "^1.15.6"
Expand Down
Loading