forked from ekylibre/ekylibre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
32 lines (27 loc) · 795 Bytes
/
.rubocop.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# This file contains configuration specific for this repository that are different from the default Ekylibre style guide
inherit_from: .rubocop_todo.yml
AllCops:
TargetRubyVersion: 2.6
Exclude:
- 'bin/**/*'
- 'config/**/*'
- 'db/first_runs/**/*'
- 'db/migrate/**/*'
- 'db/schema.rb'
- 'lib/generators/**/*'
- 'lib/procedo/formula/language.rb'
- 'lib/working_set/query_language.rb'
- 'node_modules/**/*'
- 'plugins/**/*'
- 'plugins-disabled/**/*'
- 'tmp/**/*'
- 'vendor/**/*'
# We disable this for now. 1500 offenses as of 01/02/2021
Layout/LineLength:
Enabled: false
# Too many offenses to enable this for now.
Style/StringLiterals:
Enabled: false
# Do not encourage the use of modifiers
Style/WhileUntilModifier:
Enabled: false