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
Hello,
I am working on a docker compose including mongo (among other services), and I have an issue with yamlfmt. Let's look at the following example:
mongo: image: $MONGO_IMAGE:$MONGO_VERSION container_name: mongo hostname: mongo volumes: # Persistent docker volume - mongo-storage:/data/db:rw networks: - logging_network restart: 'no'
Yamlfmt turns it into:
mongo: image: $MONGO_IMAGE:$MONGO_VERSION container_name: mongo hostname: mongo volumes: # Persistent docker volume - mongo-storage:/data/db:rw networks: - logging_network restart: no
Please notice that the single quotes around no are removed. But they are required. Is it possible to make yamlfmt ignore this line ?
The text was updated successfully, but these errors were encountered:
I also want to know this, I have a script to insert a licence and its removing it from the top of the file before '----'
Sorry, something went wrong.
No branches or pull requests
Hello,
I am working on a docker compose including mongo (among other services), and I have an issue with yamlfmt. Let's look at the following example:
Yamlfmt turns it into:
Please notice that the single quotes around no are removed. But they are required. Is it possible to make yamlfmt ignore this line ?
The text was updated successfully, but these errors were encountered: