mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-07-16 21:14:27 +08:00
* Feature: Feature flags on account (#814)
* Added the new column on account model for managing feature flags
* Added the inbound email flag
* Locked the settings of this eature in account settings based on this
* Encapsulated the feature flaging as a concern. With this, we can re-use the same concern if we introduce this in other models like user or inbox or so.
* Added the features in the account api
* Changed Rails/FilePath style - rubocop issue
* Revert "Changed Rails/FilePath style - rubocop issue"
This reverts commit 3a42d3b9c9.
* Disabling rubocop on codeclimate as we already have this in CICD
33 lines
559 B
YAML
33 lines
559 B
YAML
version: "2"
|
|
plugins:
|
|
rubocop:
|
|
enabled: false
|
|
channel: rubocop-0-73
|
|
eslint:
|
|
enabled: false
|
|
csslint:
|
|
enabled: true
|
|
scss-lint:
|
|
enabled: true
|
|
brakeman:
|
|
enabled: false
|
|
checks:
|
|
similar-code:
|
|
enabled: false
|
|
exclude_patterns:
|
|
- "spec/"
|
|
- "**/specs/"
|
|
- "db/*"
|
|
- "bin/**/*"
|
|
- "db/**/*"
|
|
- "config/**/*"
|
|
- "public/**/*"
|
|
- "vendor/**/*"
|
|
- "node_modules/**/*"
|
|
- "lib/tasks/auto_annotate_models.rake"
|
|
- "app/test-matchers.js"
|
|
- "docs/*"
|
|
- "**/*.md"
|
|
- "**/*.yml"
|
|
- "app/javascript/dashboard/i18n/locale"
|