Pryz / yaml-lint

Simple yaml check tool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Doesn't detect duplicate keys

alexjurkiewicz opened this issue · comments

Hi, it would be great if the following YAML document would raise an error:

key:
  val: 1
  val: 2

You can see this rule implemented in yamllint: http://yamllint.readthedocs.io/en/latest/rules.html#module-yamllint.rules.key_duplicates

Totally agree. Will try to work on it asap ;)

@Pryz , is this project still maintained, and if it is, how hard would it be to implement this feature, and if not too hard, would you accept a PR that implements it?

@alexharv074 Unfortunately I don't have much time to work on this project anymore. However I will totally be in for a PR :)

From the doc shared by @alexjurkiewicz it seems pretty easy to implement this feature.