We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f13bd8c commit 3b8e435Copy full SHA for 3b8e435
.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
@@ -75,6 +75,11 @@ def run_tests(self):
75
"six",
76
'pathlib2;python_version=="2.7"',
77
],
78
+ extras_require={
79
+ 'dev': [
80
+ 'pre-commit'
81
+ ]
82
+ },
83
tests_require=[
84
"mock",
85
"pytest",
0 commit comments