-
Notifications
You must be signed in to change notification settings - Fork 136
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 #1 from ghoneycutt/asdf
A collection of commits working toward getting this to v1
- Loading branch information
Showing
11 changed files
with
172 additions
and
422 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,6 +1,35 @@ | ||
.*.sw? | ||
pkg | ||
spec/fixtures | ||
.rspec_system | ||
.vagrant | ||
vendor | ||
# Default .gitignore for Ruby | ||
*.gem | ||
*.rbc | ||
.bundle | ||
.config | ||
coverage | ||
InstalledFiles | ||
lib/bundler/man | ||
pkg | ||
rdoc | ||
spec/reports | ||
test/tmp | ||
test/version_tmp | ||
tmp | ||
Gemfile.lock | ||
|
||
# YARD artifacts | ||
.yardoc | ||
_yardoc | ||
doc/ | ||
|
||
# Vim | ||
*.swp | ||
|
||
# OS X | ||
.DS_Store | ||
|
||
# Puppet | ||
coverage/ | ||
spec/fixtures/modules/* | ||
spec/fixtures/manifests/* |
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,53 @@ | ||
--- | ||
AllCops: | ||
# DisplayCopNames: true | ||
DisplayStyleGuide: true | ||
Exclude: | ||
- 'vendor/**/*' | ||
- 'pkg/**/*' | ||
- 'spec/fixtures/**/*' | ||
- '**/Rakefile' | ||
|
||
# Cop's to ignore | ||
|
||
# With this enabled it suggests a change that will break the Gemfile | ||
Lint/AssignmentInCondition: | ||
Enabled: false | ||
|
||
Metrics/LineLength: | ||
Enabled: false | ||
|
||
# This is a good idea, but does not line up the rest of the lines making it | ||
# harder to read | ||
Style/IndentHash: | ||
Enabled: false | ||
|
||
Style/Next: | ||
Enabled: false | ||
|
||
# If enabled, this cop makes it harder to understand the logic | ||
Style/NonNilCheck: | ||
Enabled: false | ||
|
||
Style/TrailingComma: | ||
Enabled: false | ||
|
||
# If enabled, this cop does not like the accessor method to start with 'get_', | ||
# with is a common pattern in the Puppet community. | ||
Style/AccessorMethodName: | ||
Enabled: false | ||
|
||
# This is a common pattern in the Puppet community. | ||
Style/ClassAndModuleChildren: | ||
Enabled: false | ||
|
||
# This is a common pattern in the Puppet community. | ||
Style/Documentation: | ||
Enabled: false | ||
|
||
# Cop's that require ruby >= 1.9 | ||
Style/HashSyntax: | ||
Enabled: false | ||
|
||
Style/BracesAroundHashParameters: | ||
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
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.