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
[tool.nitpick] style = ["style.toml"]
["foo.yaml"] boolean_true = true boolean_false = false string_a = 'string_a' string_b = 'string_b'
boolean_true: false boolean_false: true string_a: 'string_a' string_b: 'does not match'
$ nitpick check foo.yaml:1: NIP369 has different values. Use this: boolean_true: true boolean_false: false string_b: string_b
$ nitpick check foo.yaml:1: NIP369 has different values. Use this: boolean_true: true string_b: string_b
nitpick
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Expected behavior
Current behavior
$ nitpick check foo.yaml:1: NIP369 has different values. Use this: boolean_true: true string_b: string_b
Context
Your environment
nitpick
version used: 0.32.0The text was updated successfully, but these errors were encountered: