-
-
Notifications
You must be signed in to change notification settings - Fork 25
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 #35 from voxpupuli/modulesync
Modulesync 0.21.0
- Loading branch information
Showing
7 changed files
with
90 additions
and
15 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
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 +1 @@ | ||
modulesync_config_version: '0.20.1' | ||
modulesync_config_version: '0.21.0' |
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,63 @@ | ||
# Managed by https://github.com/voxpupuli/modulesync_configs | ||
# | ||
# Hooks are only enabled if you take action. | ||
# | ||
# To enable the hooks run: | ||
# | ||
# ``` | ||
# bundle exec overcommit --install | ||
# # ensure .overcommit.yml does not harm to you and then | ||
# bundle exec overcommit --sign | ||
# ``` | ||
# | ||
# (it will manage the .git/hooks directory): | ||
# | ||
# Examples howto skip a test for a commit or push: | ||
# | ||
# ``` | ||
# SKIP=RuboCop git commit | ||
# SKIP=PuppetLint git commit | ||
# SKIP=RakeTask git push | ||
# ``` | ||
# | ||
# Don't invoke overcommit at all: | ||
# | ||
# ``` | ||
# OVERCOMMIT_DISABLE=1 git commit | ||
# ``` | ||
# | ||
# Read more about overcommit: https://github.com/brigade/overcommit | ||
# | ||
# To manage this config yourself in your module add | ||
# | ||
# ``` | ||
# .overcommit.yml: | ||
# unmanaged: true | ||
# ``` | ||
# | ||
# to your modules .sync.yml config | ||
--- | ||
PreCommit: | ||
RuboCop: | ||
enabled: true | ||
description: 'Runs rubocop on modified files only' | ||
command: ['bundle', 'exec', 'rubocop'] | ||
PuppetLint: | ||
enabled: true | ||
description: 'Runs puppet-lint on modified files only' | ||
command: ['bundle', 'exec', 'puppet-lint'] | ||
YamlSyntax: | ||
enabled: true | ||
JsonSyntax: | ||
enabled: true | ||
TrailingWhitespace: | ||
enabled: true | ||
|
||
PrePush: | ||
RakeTarget: | ||
enabled: true | ||
description: 'Run rake targets' | ||
targets: | ||
- 'test' | ||
- 'rubocop' | ||
command: [ 'bundle', 'exec', 'rake' ] |
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
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