We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e59361f commit 935b94dCopy full SHA for 935b94d
util/export.py
@@ -71,7 +71,9 @@ def main():
71
72
outfile = sys.argv[1] if len(sys.argv) > 1 else "util/gh-pages/lints.json"
73
with open(outfile, "w") as fp:
74
- json.dump(list(lints.values()), fp, indent=2)
+ lints = list(lints.values())
75
+ lints.sort(key=lambda x: x['id'])
76
+ json.dump(lints, fp, indent=2)
77
log.info("wrote JSON for great justice")
78
79
0 commit comments