From f0ebf5724bf79d3eea3772eee7938bc049fc7267 Mon Sep 17 00:00:00 2001 From: Michael Hucka Date: Mon, 3 Mar 2025 16:48:07 -0800 Subject: [PATCH] Add missing yamllint config file Somehow, my previous PRs for adding yamllint did not include the `.yamllintrc` file. Here it is. --- .yamllint.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .yamllint.yaml diff --git a/.yamllint.yaml b/.yamllint.yaml new file mode 100644 index 000000000..003eb5d56 --- /dev/null +++ b/.yamllint.yaml @@ -0,0 +1,10 @@ +# Summary: yamllint configuration for TensorFlow Quantum. +# See https://yamllint.readthedocs.io/ for info about configuration options. + +rules: + line-length: + # A common occurrence in YAML files is long URLs. The next two settings are + # not specific to URLs, but help. It saves developer time by not requiring + # comment directives to disable warnings at every occurrence. + allow-non-breakable-words: true + allow-non-breakable-inline-mappings: true