Skip to content

Commit

Permalink
Merge pull request #20 from rapid7/df-3184
Browse files Browse the repository at this point in the history
[DF-3184] - commented out makefile syntax check
  • Loading branch information
jherlitz-r7 authored Sep 16, 2019
2 parents 780b6a6 + b351bf9 commit 0868af4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ validate("/path/to/plugin/directory")
```

## Changelog

* 1.1.1 - Removed breaking changes to Makefile validator
* 1.1.0 - Add validator rules: Check for Help.md, profanity check, acronym capitalization check,
`print` usage check, JSON tests, exceptions, credentials, passwords | Updated rules: Makefiles, logging
* 1.0.0 - Initial release
Expand Down
2 changes: 1 addition & 1 deletion rules/makefile_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def validate_syntax(path_to_makefile):

def validate(self, spec):
d = spec.directory
MakefileValidator.validate_syntax(d)
# MakefileValidator.validate_syntax(d)
for i in spec.raw_makefile().split('\n\n'):
line = i.split('\n')
if line[0].startswith('runner:'):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
long_description = fh.read()

setup(name='insightconnect_integrations_validators',
version='1.1.0',
version='1.1.1',
description='Validator tooling for InsightConnect integrations',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 0868af4

Please sign in to comment.