forked from Eneroth3/persistent-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
36 lines (28 loc) · 829 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
33
34
35
36
require: rubocop-sketchup
AllCops:
DisplayCopNames: true
Exclude:
- 'tests/**/*'
SketchUp:
TargetSketchUpVersion: 2015
# SketchUp API uses camel case method names for observers and tool interfaces.
Naming/MethodName:
Enabled: false
# Let Git client handle file endings.
Layout/EndOfLine:
Enabled: false
# Single quotes being faster is hardly measurable and only affects parse time.
# Enforcing double quotes reduces the times where you need to change them
# when introducing an interpolation. Use single quotes only if their semantics
# are needed.
Style/StringLiterals:
EnforcedStyle: double_quotes
SketchupDeprecations:
Enabled: true
SketchupPerformance:
Enabled: true
# This is not an extension, just a single module.
SketchupRequirements:
Enabled: false
SketchupSuggestions:
Enabled: true