2021-12-20 18:37:33 +00:00
|
|
|
version: '2'
|
2019-08-31 07:59:55 +00:00
|
|
|
plugins:
|
|
|
|
rubocop:
|
2020-05-04 17:36:42 +00:00
|
|
|
enabled: false
|
2019-08-31 07:59:55 +00:00
|
|
|
channel: rubocop-0-73
|
2019-08-31 08:04:25 +00:00
|
|
|
eslint:
|
|
|
|
enabled: false
|
|
|
|
csslint:
|
|
|
|
enabled: true
|
|
|
|
scss-lint:
|
|
|
|
enabled: true
|
|
|
|
brakeman:
|
2020-02-02 12:05:03 +00:00
|
|
|
enabled: false
|
2019-12-28 16:26:42 +00:00
|
|
|
checks:
|
|
|
|
similar-code:
|
|
|
|
enabled: false
|
2021-10-14 07:25:46 +00:00
|
|
|
method-count:
|
|
|
|
enabled: true
|
|
|
|
config:
|
2021-12-20 18:37:33 +00:00
|
|
|
threshold: 32
|
2021-10-30 01:39:46 +00:00
|
|
|
file-lines:
|
|
|
|
enabled: true
|
|
|
|
config:
|
|
|
|
threshold: 300
|
2022-02-01 07:43:55 +00:00
|
|
|
method-lines:
|
|
|
|
config:
|
|
|
|
threshold: 50
|
2019-12-11 15:27:06 +00:00
|
|
|
exclude_patterns:
|
2021-12-20 18:37:33 +00:00
|
|
|
- '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'
|
|
|
|
- '**/*.stories.js'
|
|
|
|
- 'stories/'
|
|
|
|
- 'app/javascript/dashboard/components/widgets/conversation/advancedFilterItems/index.js'
|
|
|
|
- 'app/javascript/shared/constants/countries.js'
|
|
|
|
- 'app/javascript/dashboard/components/widgets/conversation/advancedFilterItems/languages.js'
|
|
|
|
- 'app/javascript/dashboard/routes/dashboard/contacts/contactFilterItems/index.js'
|
2022-02-02 13:16:07 +00:00
|
|
|
- 'app/javascript/dashboard/routes/dashboard/settings/automation/constants.js'
|
2022-02-01 07:43:55 +00:00
|
|
|
- 'app/javascript/dashboard/components/widgets/FilterInput/FilterOperatorTypes.js'
|
2022-02-15 11:40:49 +00:00
|
|
|
- 'app/javascript/dashboard/routes/dashboard/settings/reports/constants.js'
|
2022-03-20 07:37:36 +00:00
|
|
|
- 'app/javascript/dashboard/i18n/index.js'
|
|
|
|
- 'app/javascript/widget/i18n/index.js'
|
|
|
|
- 'app/javascript/survey/i18n/index.js'
|