Skip to content

Commit

Permalink
Merge pull request #1 from wk/pr-1280
Browse files Browse the repository at this point in the history
massage into rubocop compliance
  • Loading branch information
rgnv authored Apr 27, 2018
2 parents ec90b08 + 83a0094 commit 2bb40ad
Show file tree
Hide file tree
Showing 153 changed files with 1,736 additions and 2,260 deletions.
13 changes: 13 additions & 0 deletions .github/no-response.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Configuration for probot-no-response - https://github.com/probot/no-response

# Number of days of inactivity before an Issue is closed for lack of response
daysUntilClose: 21
# Label requiring a response
responseRequiredLabel: user_pending
# Comment to post when closing an Issue for lack of response. Set to `false` to disable
closeComment: >
This issue has been automatically closed because there has been no response
to our request for more information from the original author. The information
that is currently in the issue is insufficient to take further action.
Feel free to re-open this issue if additional information becomes available,
or if you believe it has been closed in error.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
/tmp/
.idea/
Gemfile.lock
.ruby-version
.sass-cache/

# Used by dotenv library to load environment variables.
# .env
Expand Down
17 changes: 17 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,23 @@ LineLength:
Style/PreferredHashMethods:
EnforcedStyle: verbose

Style/Not:
Enabled: false

# comply with @ytti's exacting specifications
Style/CommandLiteral:
EnforcedStyle: percent_x

Style/FormatString:
EnforcedStyle: percent

Style/FormatStringToken:
EnforcedStyle: unannotated

Style/RescueModifier:
Enabled: false

# Do not attempt to police vendored code, and exclude special cases
AllCops:
Exclude:
- 'vendor/**/*'
Expand Down
Loading

0 comments on commit 2bb40ad

Please sign in to comment.