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 7dad9fc commit fd139daCopy full SHA for fd139da
.pre-commit-config.yaml
@@ -60,6 +60,23 @@ repos:
60
- --disable=E113 # Disable empty docstrings
61
- --summary # Print a summary
62
63
+# Conference data validation
64
+- repo: local
65
+ hooks:
66
+ - id: conference-data-validation
67
+ name: Validate conference data schema
68
+ entry: python utils/sort_yaml.py --skip_links
69
+ language: system
70
+ files: '^_data/(conferences|archive|legacy)\.yml$'
71
+ pass_filenames: false
72
+
73
+ - id: conference-csv-validation
74
+ name: Validate CSV conference data
75
+ entry: python utils/conferences/linters/validate.py
76
77
+ files: '^utils/conferences/.*\.csv$'
78
79
80
ci:
81
autofix_commit_msg: |
82
[pre-commit.ci] auto fixes from pre-commit.com hooks
0 commit comments