ai-codereviewer/.github/config/rules.yaml
2024-11-27 09:59:06 +00:00

23 lines
No EOL
415 B
YAML

# Global rules that apply to all files/directories unless overridden
global: []
# Rules for specific file extensions
extensions:
[".ts", ".js"]: ["Always use export default"]
"tsx": ["Always use arrow functions"]
# Rules for specific directories
directories:
"src/**": []
# Paths to ignore completely
ignore:
- ".git"
- "node_modules"
- "dist"
- "build"
- "_build"
- "csv"
- "json"