-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
62 lines (53 loc) · 1.91 KB
/
.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# The behavior of RuboCop can be controlled via the .rubocop.yml
# configuration file. It makes it possible to enable/disable
# certain cops (checks) and to alter their behavior if they accept
# any parameters. The file can be placed either in your home
# directory or in some project directory.
#
# RuboCop will start looking for the configuration file in the directory
# where the inspected file is and continue its way up to the root directory.
#
# See https://docs.rubocop.org/rubocop/configuration
require:
- rubocop-rails
# Mude para a versão de Ruby a ser utilizada e inclua aqui outros arquivos que
# você considera importante que o RuboCop não execute como: node_modules, etc..
AllCops:
TargetRubyVersion: 3.2.1
NewCops: enable
Exclude:
- 'bin/**/*'
- 'db/schema.rb'
- 'db/migrate/*'
- 'vendor/**/*'
- 'config/**/*'
- 'script/**/*'
- 'spec/rails_helper.rb'
- 'spec/support/*'
- 'db/seeds.rb'
# Trabalhamos bastante com testes como a documentação viva do projeto então
# desabilitamos a Cop de documentação com comentário
Style/Documentation:
Enabled: false
# Esta é uma Cop polêmica, pois pode ajudar na performance. Caso deseje manter esta Cop,
# basta remover estas linhas
Style/FrozenStringLiteralComment:
Enabled: false
# Escrevemos mais linhas em arquivos de teste do que em arquivos de
# código, então é importante poder ter esses arquivos do tamanho necessário
Metrics/BlockLength:
AllowedMethods: ['describe', 'context', 'feature', 'scenario', 'let', 'it', 'xit']
Layout/LineLength:
Exclude:
- 'spec/**/*'
Layout/EndOfLine:
Enabled: True
# Resolver erro: Lint/EmptyBlock: Empty block detected
Lint/EmptyBlock:
Exclude:
- 'spec/factories/**/*'
- 'spec/models/**/*'
# Prioriza a sintaxe compact style na definição de classes
# Exemplo: class Api::V1::ApiController < ActionController::API
Style/ClassAndModuleChildren:
EnforcedStyle: compact