39 lines
504 B
YAML
39 lines
504 B
YAML
|
---
|
||
|
engines:
|
||
|
brakeman:
|
||
|
enabled: true
|
||
|
bundler-audit:
|
||
|
enabled: true
|
||
|
duplication:
|
||
|
enabled: true
|
||
|
config:
|
||
|
languages:
|
||
|
- ruby
|
||
|
- javascript
|
||
|
eslint:
|
||
|
enabled: true
|
||
|
fixme:
|
||
|
enabled: true
|
||
|
rubocop:
|
||
|
enabled: true
|
||
|
ratings:
|
||
|
paths:
|
||
|
- Gemfile.lock
|
||
|
- "**.erb"
|
||
|
- "**.haml"
|
||
|
- "**.rb"
|
||
|
- "**.rhtml"
|
||
|
- "**.slim"
|
||
|
- "**.inc"
|
||
|
- "**.js"
|
||
|
- "**.jsx"
|
||
|
- "**.module"
|
||
|
exclude_paths:
|
||
|
- config/
|
||
|
- db/
|
||
|
- features/
|
||
|
- node_modules/
|
||
|
- spec/
|
||
|
- vendor/
|
||
|
- lib/api/v3/
|