We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Using the json reporter when linting prints output that's not json.
command: ./Pods/SwiftLint/swiftlint lint --reporter json --quiet
./Pods/SwiftLint/swiftlint lint --reporter json --quiet
output:
Found a configuration for 'modifier_order' rule, but it is disabled on 'disabled_rules'. [ {
The warning introduced with #1350 breaks the output from following the standard json schema.
$ ./Pods/SwiftLint/swiftlint lint --reporter json --quiet
swiftlint version
xcode-select -p
The text was updated successfully, but these errors were encountered:
That message should be printed to stderr, while the json should be printed to stdout. You can append 2>/dev/null to omit the stderr output.
stderr
stdout
2>/dev/null
Sorry, something went wrong.
Thank you!
No branches or pull requests
New Issue Checklist
Describe the bug
Using the json reporter when linting prints output that's not json.
command:
./Pods/SwiftLint/swiftlint lint --reporter json --quiet
output:
The warning introduced with #1350 breaks the output from following the standard json schema.
Complete output when running SwiftLint, including the stack trace and command used
Environment
swiftlint version
to be sure)? 0.33.1xcode-select -p
)? 10.1.0The text was updated successfully, but these errors were encountered: