mirror of
https://github.com/anteo/redmine_custom_workflows.git
synced 2026-01-25 15:54:19 +00:00
59 lines
1.5 KiB
YAML
59 lines
1.5 KiB
YAML
# Redmine plugin for Custom Workflows
|
|
#
|
|
# Anton Argirov, Karel Pičman <karel.picman@kontron.com>
|
|
#
|
|
# This file is part of Redmine OAuth plugin.
|
|
#
|
|
# Redmine Custom Workflows plugin is free software: you can redistribute it and/or modify it under the terms of the GNU
|
|
# General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your
|
|
# option) any later version.
|
|
#
|
|
# Redmine Custom Workflows plugin is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
|
|
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
# for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along with Redmine Custom Workflows plugin. If not,
|
|
# see <https://www.gnu.org/licenses/>.
|
|
|
|
AllCops:
|
|
TargetRubyVersion: 3.2
|
|
TargetRailsVersion: 7.1
|
|
SuggestExtensions: false
|
|
|
|
NewCops: enable
|
|
|
|
Exclude:
|
|
- '**/vendor/**/*'
|
|
|
|
# Rules for CustomWorkflows
|
|
Metrics/BlockLength:
|
|
Enabled: false
|
|
|
|
Metrics/ClassLength:
|
|
Enabled: false
|
|
|
|
Metrics/MethodLength:
|
|
Enabled: false
|
|
|
|
Metrics/AbcSize:
|
|
Enabled: false
|
|
|
|
Metrics/PerceivedComplexity:
|
|
Enabled: false
|
|
|
|
Metrics/CyclomaticComplexity:
|
|
Enabled: false
|
|
|
|
Rails/HasAndBelongsToMany:
|
|
Enabled: false
|
|
|
|
Rails/SkipsModelValidations:
|
|
Exclude:
|
|
- db/migrate/20210210144000_change_default_active_boolean_value_to_custom_workflows.rb
|
|
|
|
Style/ExpandPathArguments:
|
|
Enabled: false
|
|
|
|
Style/HashSyntax:
|
|
EnforcedShorthandSyntax: either
|