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
Running cnf-format -w foo.yaml writes different contents to file than what is checked, causing an always-fail situation.
cnf-format -w foo.yaml
$ nl foo.yaml 0001 Description: |- 0002 Foo 0003 0004 Bar 0005 0006 Baz $ cfn-format -w foo.yaml 2>&1 | nl 0001 Semantic difference after formatting: 0002 (>) Description: |- 0003 Foo 0004 0005 0006 Bar 0007 0008 0009 Baz 0010 $ cfn-format -w foo.yaml 2>&1 | nl 0001 Semantic difference after formatting: 0002 (>) Description: |- 0003 Foo 0004 0005 0006 Bar 0007 0008 0009 Baz 0010 $ cfn-format -w foo.yaml 2>&1 Semantic difference after formatting: (>) Description: |- Foo Bar Baz $ echo $? 1 $ nl foo.yaml 0001 Description: |- 0002 Foo 0003 0004 Bar 0005 0006 Baz
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Running
cnf-format -w foo.yaml
writes different contents to file than what is checked, causing an always-fail situation.The text was updated successfully, but these errors were encountered: