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.
2 parents 7e710aa + 3b8e435 commit b512034Copy full SHA for b512034
3 files changed
.pre-commit-hooks.yaml
@@ -0,0 +1,6 @@
1
+- id: openapi-spec-validator
2
+ name: openapi-spec-validator
3
+ entry: openapi-spec-validator
4
+ description: Hook to validate Open API specs.
5
+ language: python
6
+ files: .*openapi.*\.(json|yaml|yml)
hooks.yaml
setup.py
@@ -76,6 +76,11 @@ def run_tests(self):
76
"six",
77
'pathlib2;python_version=="2.7"',
78
],
79
+ extras_require={
80
+ 'dev': [
81
+ 'pre-commit'
82
+ ]
83
+ },
84
tests_require=[
85
"mock",
86
"pytest",
0 commit comments