-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version 0.1.0 Release #91
Merged
Conversation
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
- Add test of pythong 3.8 - Add dockerfile - Add lint for dockerfile Signed-off-by: Jeffrey Bouter <jb@warpnet.nl>
- Update hadolint Signed-off-by: Jeffrey Bouter <jb@warpnet.nl>
- Ignore version pinning for APK - Pin salt-lint to version 0.0.10 Signed-off-by: Jeffrey Bouter <jb@warpnet.nl>
- Properly pin salt-lint version Signed-off-by: Jeffrey Bouter <jb@warpnet.nl>
- Add distro package to python 3.8 test Signed-off-by: Jeffrey Bouter <jb@warpnet.nl>
Signed-off-by: Roald Nefs <roald@warpnet.nl>
- Remove (failing) checks on Python 3.8 Signed-off-by: Jeffrey Bouter <jb@warpnet.nl>
Update badges in `README.md` to display Travis and Coverall badges for the master branch. Signed-off-by: Roald Nefs <roald@warpnet.nl>
- Remove py38 Signed-off-by: Jeffrey Bouter <jb@warpnet.nl>
Update Travis - Add Dockerfile - Integrate Dockerfile scanning in Travis
Update badges in README.md
Signed-off-by: Roald Nefs <roald@warpnet.nl>
- Add a table with all rules, linking to corresponding wiki entries Signed-off-by: Jeffrey Bouter <jb@warpnet.nl>
Fix output encoding because the print call has been moved to the formatter. Signed-off-by: Roald Nefs <roald@warpnet.nl>
Signed-off-by: Roald Nefs <roald@warpnet.nl>
Update rules list in `README.md` to simply the markdown table. Co-Authored-By: Imran Iqbal <myii@users.noreply.github.com>
- Simplify the markdown table as per @myii his recommendations Signed-off-by: Jeffrey Bouter <jb@warpnet.nl>
Update README.md to include list of rules
Read input from stdin
Fix encoding to use utf-8 by default in Python 2, the default encoding in Python 3 is already utf-8. This fix will wrap `sys.stdout` in a object that automatically encodes an unicode string into utf-8, in Python 2 only. An alternative to this would be to set the `PYTHONIOENCODING='utf-8'` environment variable before running `salt-lint`, but this would require an extra action on the user side. The old solution using `str.encode('utf-8')` caused byte string (e.g. `b''`) output in Python 3... Fixes #74. Signed-off-by: Roald Nefs <roald@warpnet.nl>
Fix encoding to use utf-8
Signed-off-by: Roald Nefs <roald@warpnet.nl>
Signed-off-by: Roald Nefs <roald@warpnet.nl>
Add JSON Formatter
Fix format string to also use square brackets with the `--nocolor` option. Fixes #86. Signed-off-by: Roald Nefs <roald@warpnet.nl>
Fix format string to use square brackets
Change all 'Salt state' occurrences to 'Salt State'
Signed-off-by: Roald Nefs <roald@warpnet.nl>
Version 0.1.0 Release
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Introduction
Version
v0.1.0
release, requires to be tagged after being merged intomaster
.Added
212
to check for irregular spaces (Add rule to check for irregular spaces #76).Dockerfile
forsalt-lint
(Update Travis #77).README.md
(Update README.md to include list of rules #82).Fixed
--nocolor
option (Bug: output format with and without --no-color option are different #86).Other
Fixes #86.
Fixes #80.
Fixes #79.
Fixes #70.