Code Quality
(CQ-100) High Maintainability
# .codeclimate.yml version: "2" checks: # Disable checks for similar code. # Because this creates too many false positives. similar-code: enabled: false # Increase the number of lines allowed for a method. # Because this is more reasonable for JavaScript. method-lines: config: threshold: 50 exclude_patterns: - "tests/" - "spec/" - "**/*.spec.js" - "**/*.spec.jsx" - "**/*.spec.ts" - "**/*.spec.tsx" - "**/vendor/" - "**/node_modules/"
(CQ-110) Robust Test Coverage
(CQ-120) Code Cleanliness
(CQ-130) Never Hardcode Data
Last updated
Was this helpful?