Sorin Sbarnea
Sorin Sbarnea
As long the recommendation can be made into code that does not need AI to make a decision, I will be happy with it. As "style" is renowned to create...
Yes, I am interested only about the human side. AFAIK, if it was about machine-only format I would have being used JSON/XML/protobuf/... ;) One deal breaker here is the fact...
I know, I am already using ruamel for a good number of years with https://github.com/ansible/ansible-lint
I am not saying it would be easy to make it work but if someone is using matrix it is likely that they are using it with irc too, and...
Only slightly related to the current subject, but can someone recommend a tool, preferably js or python that can be used to sort schema definition files? As they grow fast...
@awwright The idea is to declare the sort-order at schema level, so validators, editors, reformatters could make use of it. I kinda like the simplicity of `"propertiesOrder": ["title", "$comment", ".*",...
I am personally against over-complicating that feature, shortly I find the simple list of strings being more than enough to enable tools to determine how to sort. Property type should...
I think that the correct approach here is to use another repository to host schema and remove its file (not the definition) from the store. The key here is to...
It should not be too hard to implement [`__eq__()`](http://stackoverflow.com/questions/390250/elegant-ways-to-support-equivalence-equality-in-python-classes) method, this should do the deal. I already have some code that I used to workaround this bug (may need improvement).
Btw, while playing with this class I observed that I am not able to do something like: ``` for k in multi_dict.keys(): print(multi_dict[k]) ``` `k` is a tuple and this...