summaryrefslogtreecommitdiffstats
path: root/.rubocop_todo.yml
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2019-08-18 14:40:47 +0000
committerGo MAEDA <maeda@farend.jp>2019-08-18 14:40:47 +0000
commita1d454a1b18f503a30805a29b55fccecf97e48d7 (patch)
tree105f72042c33a30587d472ea9e94f2e803f27b73 /.rubocop_todo.yml
parent1c3672a67707185b8dc9ff983d25926c8b097241 (diff)
downloadredmine-a1d454a1b18f503a30805a29b55fccecf97e48d7.tar.gz
redmine-a1d454a1b18f503a30805a29b55fccecf97e48d7.zip
Add rubocop-performance (#31509).
git-svn-id: http://svn.redmine.org/redmine/trunk@18378 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to '.rubocop_todo.yml')
-rw-r--r--.rubocop_todo.yml64
1 files changed, 64 insertions, 0 deletions
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml
index 735b9bf54..9005a86ef 100644
--- a/.rubocop_todo.yml
+++ b/.rubocop_todo.yml
@@ -818,6 +818,70 @@ Naming/VariableNumber:
- 'test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb'
- 'test/unit/project_test.rb'
+# Cop supports --auto-correct.
+Performance/Casecmp:
+ Exclude:
+ - 'lib/redmine/codeset_util.rb'
+ - 'lib/redmine/scm/adapters/bazaar_adapter.rb'
+
+Performance/FixedSize:
+ Exclude:
+ - 'test/integration/api_test/issues_test.rb'
+ - 'test/integration/attachments_test.rb'
+
+# Cop supports --auto-correct.
+Performance/InefficientHashSearch:
+ Exclude:
+ - 'test/functional/issues_custom_fields_visibility_test.rb'
+ - 'test/functional/search_custom_fields_visibility_test.rb'
+ - 'test/functional/timelog_custom_fields_visibility_test.rb'
+ - 'test/unit/lib/redmine/mime_type_test.rb'
+ - 'test/unit/query_test.rb'
+
+# Cop supports --auto-correct.
+Performance/RedundantBlockCall:
+ Exclude:
+ - 'app/controllers/application_controller.rb'
+ - 'lib/redmine/views/builders/structure.rb'
+ - 'test/functional/repositories_git_controller_test.rb'
+ - 'test/unit/lib/redmine/views/builders/json_test.rb'
+ - 'test/unit/lib/redmine/views/builders/xml_test.rb'
+
+# Cop supports --auto-correct.
+Performance/RedundantMatch:
+ Exclude:
+ - 'app/controllers/auto_completes_controller.rb'
+ - 'app/models/issue_relation.rb'
+ - 'lib/redmine/wiki_formatting/textile/formatter.rb'
+ - 'lib/redmine/wiki_formatting/textile/redcloth3.rb'
+
+# Cop supports --auto-correct.
+# Configuration parameters: MaxKeyValuePairs.
+Performance/RedundantMerge:
+ Exclude:
+ - 'app/controllers/issues_controller.rb'
+ - 'app/helpers/application_helper.rb'
+ - 'app/helpers/avatars_helper.rb'
+ - 'app/helpers/custom_fields_helper.rb'
+ - 'app/helpers/workflows_helper.rb'
+ - 'app/models/auth_source_ldap.rb'
+ - 'app/models/principal.rb'
+ - 'lib/redmine/access_control.rb'
+ - 'test/functional/imports_controller_test.rb'
+ - 'test/unit/issue_import_test.rb'
+ - 'test/unit/time_entry_import_test.rb'
+
+# Cop supports --auto-correct.
+Performance/StringReplacement:
+ Exclude:
+ - 'app/helpers/application_helper.rb'
+ - 'app/helpers/imports_helper.rb'
+ - 'app/helpers/settings_helper.rb'
+ - 'lib/redmine/core_ext/string/conversions.rb'
+ - 'lib/redmine/wiki_formatting/textile/redcloth3.rb'
+ - 'test/helpers/application_helper_test.rb'
+ - 'test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb'
+
# Configuration parameters: Include.
# Include: app/models/**/*.rb
Rails/ActiveRecordOverride: