mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-14 13:53:29 +08:00
Merge pull request #1384 from KeWang0622/fix/lint-md028-eqeqeq
fix: resolve markdownlint MD028 + ESLint eqeqeq lint failures
This commit is contained in:
@@ -179,7 +179,7 @@ Get up and running in under 2 minutes:
|
|||||||
### Step 2: Install Rules (Required)
|
### Step 2: Install Rules (Required)
|
||||||
|
|
||||||
> WARNING: **Important:** Claude Code plugins cannot distribute `rules` automatically. Install them manually:
|
> WARNING: **Important:** Claude Code plugins cannot distribute `rules` automatically. Install them manually:
|
||||||
|
>
|
||||||
> If your local Claude setup was wiped or reset, that does not mean you need to repurchase ECC. Start with `ecc list-installed`, then run `ecc doctor` and `ecc repair` before reinstalling anything. That usually restores ECC-managed files without rebuilding your setup. If the problem is account or marketplace access for ECC Tools, handle billing/account recovery separately.
|
> If your local Claude setup was wiped or reset, that does not mean you need to repurchase ECC. Start with `ecc list-installed`, then run `ecc doctor` and `ecc repair` before reinstalling anything. That usually restores ECC-managed files without rebuilding your setup. If the problem is account or marketplace access for ECC Tools, handle billing/account recovery separately.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ function sanitizeParamValue(value, depth = 0) {
|
|||||||
return '[Truncated]';
|
return '[Truncated]';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (value == null) {
|
if (value === null || value === undefined) {
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -530,7 +530,7 @@ function summarizeInput(toolName, toolInput, filePaths) {
|
|||||||
if (toolInput && typeof toolInput === 'object') {
|
if (toolInput && typeof toolInput === 'object') {
|
||||||
const shallow = {};
|
const shallow = {};
|
||||||
for (const [key, value] of Object.entries(toolInput)) {
|
for (const [key, value] of Object.entries(toolInput)) {
|
||||||
if (value == null) {
|
if (value === null || value === undefined) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean') {
|
if (typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean') {
|
||||||
@@ -545,7 +545,7 @@ function summarizeInput(toolName, toolInput, filePaths) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function summarizeOutput(toolOutput) {
|
function summarizeOutput(toolOutput) {
|
||||||
if (toolOutput == null) {
|
if (toolOutput === null || toolOutput === undefined) {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user