Skip to main content

ESLint & Prettier Configuration

Enforces code quality and formatting standards using ESLint and Prettier for consistent development practices across projects.

Install this skill

or
0/100

Security score

The ESLint & Prettier Configuration skill was audited on Mar 1, 2026 and we found 26 security issues across 4 threat categories, including 1 high-severity. Review the findings below before installing.

Categories Tested

Security Issues

high line 655

Direct command execution function call

SourceSKILL.md
655const output = execSync(command, {
medium line 647

Template literal with variable interpolation in command context

SourceSKILL.md
647console.log(`${colors[color]}${message}${colors.reset}`);
medium line 652

Template literal with variable interpolation in command context

SourceSKILL.md
652colorLog(`\nšŸ” Running: ${description}`, 'blue');
medium line 653

Template literal with variable interpolation in command context

SourceSKILL.md
653colorLog(`Command: ${command}`, 'cyan');
medium line 660

Template literal with variable interpolation in command context

SourceSKILL.md
660colorLog(`āœ… ${description} - PASSED`, 'green');
medium line 663

Template literal with variable interpolation in command context

SourceSKILL.md
663colorLog(`āŒ ${description} - FAILED`, 'red');
medium line 664

Template literal with variable interpolation in command context

SourceSKILL.md
664colorLog(`Error: ${error.message}`, 'red');
medium line 671

Template literal with variable interpolation in command context

SourceSKILL.md
671colorLog(`āœ… ${description} - EXISTS`, 'green');
medium line 674

Template literal with variable interpolation in command context

SourceSKILL.md
674colorLog(`āŒ ${description} - MISSING`, 'red');
medium line 710

Template literal with variable interpolation in command context

SourceSKILL.md
710colorLog(`āŒ Check failed with error: ${error.message}`, 'red');
medium line 717

Template literal with variable interpolation in command context

SourceSKILL.md
717colorLog(`āœ… Passed: ${passed}`, 'green');
medium line 718

Template literal with variable interpolation in command context

SourceSKILL.md
718colorLog(`āŒ Failed: ${failed}`, 'red');
medium line 719

Template literal with variable interpolation in command context

SourceSKILL.md
719colorLog(`šŸ“ˆ Success Rate: ${((passed / (passed + failed)) * 100).toFixed(1)}%`,
low line 631

Node child_process module reference

SourceSKILL.md
631const { execSync } = require('child_process');
low line 332

Access to .env file

SourceSKILL.md
332.env.local
low line 333

Access to .env file

SourceSKILL.md
333.env.development.local
low line 334

Access to .env file

SourceSKILL.md
334.env.test.local
low line 335

Access to .env file

SourceSKILL.md
335.env.production.local
medium line 637

Hex-encoded characters

SourceSKILL.md
637reset: '\x1b[0m',
medium line 638

Hex-encoded characters

SourceSKILL.md
638red: '\x1b[31m',
medium line 639

Hex-encoded characters

SourceSKILL.md
639green: '\x1b[32m',
medium line 640

Hex-encoded characters

SourceSKILL.md
640yellow: '\x1b[33m',
medium line 641

Hex-encoded characters

SourceSKILL.md
641blue: '\x1b[34m',
medium line 642

Hex-encoded characters

SourceSKILL.md
642magenta: '\x1b[35m',
medium line 643

Hex-encoded characters

SourceSKILL.md
643cyan: '\x1b[36m',
low line 378

External URL reference

SourceSKILL.md
378# parcel-bundler cache (https://parceljs.org/)
Scanned on Mar 1, 2026
View Security Dashboard