mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
commit
8785923fbe
4 changed files with 1296 additions and 132 deletions
125
.rubocop.yml
125
.rubocop.yml
|
@ -1,124 +1 @@
|
|||
AllCops:
|
||||
Exclude:
|
||||
- 'Guardfile'
|
||||
# stuff generated by AR and rails
|
||||
- 'config/deploy-example.rb'
|
||||
- 'config/environments/development-example.rb'
|
||||
- 'config/environments/staging-example.rb'
|
||||
- 'db/schema.rb'
|
||||
- 'db/schema-read-only.rb'
|
||||
- 'db/whois_schema.rb'
|
||||
- 'db/api_log_schema.rb'
|
||||
- 'db/migrate/*'
|
||||
- 'db/data/*'
|
||||
# epp support files until 'complexity issues' will be solved
|
||||
- 'spec/support/epp.rb'
|
||||
- 'spec/support/epp_contact_xml_builder.rb'
|
||||
- 'vendor/bundle/**/*'
|
||||
- 'lib/tasks/import.rake'
|
||||
|
||||
Metrics/LineLength:
|
||||
Max: 120 # default 80
|
||||
|
||||
Metrics/MethodLength:
|
||||
Max: 25 # default 10
|
||||
|
||||
Metrics/ClassLength:
|
||||
Max: 300
|
||||
|
||||
Documentation:
|
||||
Enabled: false
|
||||
|
||||
Style/Semicolon:
|
||||
AllowAsExpressionSeparator: true
|
||||
|
||||
Style/AndOr:
|
||||
Enabled: false
|
||||
|
||||
Style/BracesAroundHashParameters:
|
||||
Enabled: false
|
||||
|
||||
Style/IndentHash:
|
||||
Enabled: false
|
||||
|
||||
# no need to worry about it
|
||||
Style/StringLiterals:
|
||||
Enabled: false
|
||||
|
||||
# a bit too annoying requirement, no big drawback yet dedected
|
||||
Style/TrailingWhitespace:
|
||||
Enabled: false
|
||||
|
||||
# a bit too annoying requirement, no big drawback yet dedected
|
||||
Style/TrailingBlankLines:
|
||||
Enabled: false
|
||||
|
||||
# allow == operator used in void context in specs
|
||||
Void:
|
||||
Exclude:
|
||||
- 'spec/**/*'
|
||||
|
||||
# allow should == nil in spec
|
||||
Style/NilComparison:
|
||||
Exclude:
|
||||
- 'spec/**/*'
|
||||
|
||||
# let's save space in spec
|
||||
Style/AlignHash:
|
||||
Exclude:
|
||||
- 'spec/**/*'
|
||||
|
||||
# No need to force reduce to use |a, e| as parameters.
|
||||
# Configuration parameters: Methods.
|
||||
Style/SingleLineBlockParams:
|
||||
Enabled: false
|
||||
|
||||
# allow prefix for models and controllers,
|
||||
# otherwise we have to intent all body 4 spaces
|
||||
Style/ClassAndModuleChildren:
|
||||
Enabled: false
|
||||
|
||||
# Allow to use Estonian terms/data in comments
|
||||
Style/AsciiComments:
|
||||
Enabled: false
|
||||
|
||||
# turn off comment intention check during development
|
||||
# because NerdCommenter honors commented code intentions
|
||||
Style/CommentIndentation:
|
||||
Enabled: false
|
||||
|
||||
# It did not alayws suggested good format
|
||||
Style/AlignParameters:
|
||||
Enabled: false
|
||||
|
||||
# No need fancy style of numbers such as 1_000_000
|
||||
Style/NumericLiterals:
|
||||
Enabled: false
|
||||
|
||||
# Too often suggest wrong syntax in subarray, this should be fix in rubocop first
|
||||
Style/WordArray:
|
||||
Enabled: false
|
||||
|
||||
# Ok to use parallel assigment such as: var1, var2 = [], []
|
||||
Style/ParallelAssignment:
|
||||
Enabled: false
|
||||
|
||||
# not working perfectly or not important enough to care
|
||||
Style/EmptyLinesAroundBlockBody:
|
||||
Enabled: false
|
||||
|
||||
# The ABC size is a calculated magnitude, so this number can be a Fixnum or a Float.
|
||||
Metrics/AbcSize:
|
||||
Max: 35
|
||||
|
||||
# Very strange intention requirement, disabled for now
|
||||
Style/FirstParameterIndentation:
|
||||
Enabled: false
|
||||
|
||||
# old school regex // works fine
|
||||
Style/RegexpLiteral:
|
||||
Enabled: false
|
||||
|
||||
# annoying to maintain, small thing, no real problem
|
||||
Style/SpaceInsideHashLiteralBraces:
|
||||
Enabled: false
|
||||
inherit_from: .rubocop_todo.yml
|
||||
|
|
1287
.rubocop_todo.yml
Normal file
1287
.rubocop_todo.yml
Normal file
File diff suppressed because it is too large
Load diff
5
Gemfile
5
Gemfile
|
@ -110,13 +110,10 @@ gem 'pdfkit', '0.6.2'
|
|||
# for datepicker
|
||||
gem 'jquery-ui-rails', '5.0.5'
|
||||
|
||||
# codeclimate
|
||||
|
||||
|
||||
group :development do
|
||||
gem 'spring'
|
||||
gem 'spring-commands-rspec'
|
||||
gem 'rubocop', '0.48.1'
|
||||
gem 'rubocop'
|
||||
|
||||
# deploy
|
||||
gem 'mina', '0.3.1' # for fast deployment
|
||||
|
|
11
Gemfile.lock
11
Gemfile.lock
|
@ -290,6 +290,7 @@ GEM
|
|||
nprogress-rails (0.1.6.7)
|
||||
open4 (1.3.4)
|
||||
orm_adapter (0.5.0)
|
||||
parallel (1.12.0)
|
||||
parser (2.4.0.0)
|
||||
ast (~> 2.2)
|
||||
pdfkit (0.6.2)
|
||||
|
@ -351,7 +352,8 @@ GEM
|
|||
activesupport (= 4.2.7.1)
|
||||
rake (>= 0.8.7)
|
||||
thor (>= 0.18.1, < 2.0)
|
||||
rainbow (2.2.1)
|
||||
rainbow (2.2.2)
|
||||
rake
|
||||
rake (12.0.0)
|
||||
ransack (1.5.1)
|
||||
actionpack (>= 3.0)
|
||||
|
@ -389,7 +391,8 @@ GEM
|
|||
rspec-mocks (~> 3.6.0)
|
||||
rspec-support (~> 3.6.0)
|
||||
rspec-support (3.6.0)
|
||||
rubocop (0.48.1)
|
||||
rubocop (0.49.1)
|
||||
parallel (~> 1.10)
|
||||
parser (>= 2.3.3.1, < 3.0)
|
||||
powerpack (~> 0.1)
|
||||
rainbow (>= 1.99.1, < 3.0)
|
||||
|
@ -463,7 +466,7 @@ GEM
|
|||
unf (0.1.4)
|
||||
unf_ext
|
||||
unf_ext (0.0.7.2)
|
||||
unicode-display_width (1.2.0)
|
||||
unicode-display_width (1.3.0)
|
||||
unicode_utils (1.4.0)
|
||||
uniform_notifier (1.9.0)
|
||||
uuidtools (2.1.5)
|
||||
|
@ -556,7 +559,7 @@ DEPENDENCIES
|
|||
ransack (= 1.5.1)
|
||||
rest-client
|
||||
rspec-rails (~> 3.6)
|
||||
rubocop (= 0.48.1)
|
||||
rubocop
|
||||
sass-rails (= 5.0.6)
|
||||
sdoc (= 0.4.1)
|
||||
select2-rails (= 3.5.9.3)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue