📝 Recent Updates
- Added security scanning features
- Updated configuration options
- Enhanced reporting features
- 📊 Repository analysis
- 🔒 Security checks
- 📝 Code quality validation
- 🔍 Dependency scanning
pip install -r requirements.txt
python code_scanner.py --repo-path /path/to/repo --output report.json
scan_types:
- security
- quality
- dependencies
The tool can be configured using a config.yaml
file:
scan_depth: 3
ignore_patterns:
- "*.pyc"
- "__pycache__"
file_types:
- ".py"
- ".js"
The tool generates a JSON report with the following structure:
{
"scan_date": "2023-01-01",
"files_scanned": 100,
"issues_found": []
}