diff options
| author | a14m <[email protected]> | 2020-12-02 14:47:04 +0100 |
|---|---|---|
| committer | a14m <[email protected]> | 2020-12-02 14:51:33 +0100 |
| commit | 81921690c1c090976f4f31262e8a8e7fb010e2db (patch) | |
| tree | cab90688144d1c5cdd3e36527763b4032f0e0422 /CLI/ruby/.rubocop.yml | |
| parent | beef1220ecae3d4b3faec49059b131488bc8d016 (diff) | |
Use x,y coordinates instead of pos_x (and disable rubocop warning)
Diffstat (limited to 'CLI/ruby/.rubocop.yml')
| -rw-r--r-- | CLI/ruby/.rubocop.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/CLI/ruby/.rubocop.yml b/CLI/ruby/.rubocop.yml index 12f8fd8..88abd76 100644 --- a/CLI/ruby/.rubocop.yml +++ b/CLI/ruby/.rubocop.yml @@ -8,6 +8,13 @@ Layout/EmptyLineAfterGuardClause: Layout/LineLength: Max: 120 +Metrics/BlockLength: + Exclude: + - "spec/**/*" + +Naming/MethodParameterName: + AllowedNames: x, y + Style/AccessModifierDeclarations: EnforcedStyle: inline @@ -16,7 +23,7 @@ Style/Alias: Style/BlockDelimiters: Exclude: - - 'spec/**/*' + - "spec/**/*" Style/Documentation: Enabled: false |
