summaryrefslogtreecommitdiffhomepage
path: root/.rubocop_todo.yml
diff options
context:
space:
mode:
authorGeremia Taglialatela <[email protected]>2023-06-14 14:28:42 +0200
committerGeremia Taglialatela <[email protected]>2023-06-14 14:28:42 +0200
commitd5c945a9f81e92b68e10c3680882648ee42df00d (patch)
treeb092ea046026e623ee7ead6233c6c97c908ffc39 /.rubocop_todo.yml
parente74c75b95d39fb51512387031e79f50e52a5874a (diff)
downloadcaxlsx-d5c945a9f81e92b68e10c3680882648ee42df00d.tar.gz
caxlsx-d5c945a9f81e92b68e10c3680882648ee42df00d.zip
Enable Naming/PredicateName cop
Renaming the existing methods would break the public API, and it is not worth to alias and/or deprecate existing methods, so this commit enables Naming/PredicateName and allows the existing methods to preserve their name
Diffstat (limited to '.rubocop_todo.yml')
-rw-r--r--.rubocop_todo.yml12
1 files changed, 0 insertions, 12 deletions
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml
index a855f812..dff9aacc 100644
--- a/.rubocop_todo.yml
+++ b/.rubocop_todo.yml
@@ -103,18 +103,6 @@ Naming/MethodName:
Naming/MethodParameterName:
Enabled: false
-# Configuration parameters: NamePrefix, ForbiddenPrefixes, AllowedMethods, MethodDefinitionMacros.
-# NamePrefix: is_, has_, have_
-# ForbiddenPrefixes: is_, has_, have_
-# AllowedMethods: is_a?
-# MethodDefinitionMacros: define_method, define_singleton_method
-Naming/PredicateName:
- Exclude:
- - 'spec/**/*'
- - 'lib/axlsx/workbook/worksheet/cell.rb'
- - 'lib/axlsx/workbook/worksheet/worksheet_comments.rb'
- - 'lib/axlsx/workbook/worksheet/worksheet_drawing.rb'
-
# Configuration parameters: EnforcedStyle, AllowedIdentifiers, AllowedPatterns.
# SupportedStyles: snake_case, camelCase
Naming/VariableName: