-
-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #134 from jyaworski/modulesync
Update from puppet-community modulesync_configs
- Loading branch information
Showing
44 changed files
with
1,971 additions
and
2,034 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
pkg/ | ||
.*.sw? | ||
pkg | ||
spec/fixtures | ||
.rspec_system | ||
.vagrant | ||
Gemfile.lock | ||
vendor/ | ||
spec/fixtures/ | ||
.vagrant/ | ||
.bundle/ | ||
coverage/ | ||
*.iml | ||
.idea/ | ||
log/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
AllCops: | ||
Exclude: | ||
- vendor/**/* | ||
- pkg/**/* | ||
- spec/fixtures/**/* | ||
|
||
# Configuration parameters: AllowURI, URISchemes. | ||
Metrics/LineLength: | ||
Max: 328 | ||
|
||
# 'Complexity' is very relative | ||
Metrics/PerceivedComplexity: | ||
Enabled: false | ||
|
||
# 'Complexity' is very relative | ||
Metrics/CyclomaticComplexity: | ||
Enabled: false | ||
|
||
# 'Complexity' is very relative | ||
Metrics/AbcSize: | ||
Enabled: false | ||
|
||
# Method length is not necessarily an indicator of code quality | ||
Metrics/MethodLength: | ||
Enabled: false | ||
|
||
# Class length is not necessarily an indicator of code quality | ||
Metrics/ClassLength: | ||
Enabled: false | ||
|
||
# dealbreaker: | ||
Style/TrailingComma: | ||
Enabled: false | ||
Style/ClosingParenthesisIndentation: | ||
Enabled: false | ||
|
||
# we still support ruby 1.8 | ||
Style/HashSyntax: | ||
Enabled: false | ||
|
||
Lint/AmbiguousRegexpLiteral: | ||
Enabled: true | ||
Style/RegexpLiteral: | ||
Enabled: true | ||
Style/WordArray: | ||
Enabled: true | ||
|
||
# this catches the cases of using `module` for parser functions, types, or | ||
# providers | ||
Style/ClassAndModuleChildren: | ||
Enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.