Skip to content

Commit

Permalink
Merge pull request #3 from appfolio/fff/fix-master
Browse files Browse the repository at this point in the history
Sync master with upstream and include our customizations
  • Loading branch information
César Camacho authored Sep 6, 2019
2 parents ebc41ca + c2c1f97 commit 01e3260
Show file tree
Hide file tree
Showing 1,050 changed files with 166,447 additions and 42,334 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@ pkg
Gemfile.lock
Gemfile*.lock
.rbx/
*.gem
.rvmrc
/doc/
.ruby-version
34 changes: 34 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
inherit_from: .rubocop_todo.yml

# Please keep AllCops, Bundler, Layout, Style, Metrics groups and then order cops
# alphabetically
#
# References:
# * https://github.com/bbatsov/ruby-style-guide
# * https://rubocop.readthedocs.io/
AllCops:
DisplayCopNames: true
DisplayStyleGuide: true
Exclude:
- "generators/**/*"
- "lib/active_merchant/billing/gateways/paypal/**/*"
- "lib/active_merchant/billing/gateways/paypal_express.rb"
- "vendor/**/*"
ExtraDetails: false
TargetRubyVersion: 2.3

# Active Merchant gateways are not amenable to length restrictions
Metrics/ClassLength:
Enabled: false

Metrics/ModuleLength:
Enabled: false

Layout/AlignParameters:
EnforcedStyle: with_fixed_indentation

Layout/DotPosition:
EnforcedStyle: trailing

Layout/CaseIndentation:
EnforcedStyle: end
Loading

0 comments on commit 01e3260

Please sign in to comment.