mirror of
https://github.com/freeedcom/ai-codereviewer.git
synced 2025-04-21 01:56:47 +00:00
23 lines
No EOL
441 B
YAML
23 lines
No EOL
441 B
YAML
# Global rules that apply to all files/directories unless overridden
|
|
global: ["No console.logs allowed."]
|
|
|
|
# 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"
|
|
|
|
|