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 013ac6f commit 5bf326bCopy full SHA for 5bf326b
stac_validator/stac_validator.py
@@ -5,9 +5,12 @@
5
6
from .validate import StacValidate
7
8
+# from stac_check.lint import Linter
9
+
10
11
@click.command()
12
@click.argument("stac_file")
13
+@click.option("--lint", is_flag=True, help="Use stac-check to lint stac object.")
14
@click.option(
15
"--core", is_flag=True, help="Validate core stac object only without extensions."
16
)
@@ -47,6 +50,7 @@
47
50
@click.version_option(version="2.2.0")
48
51
def main(
49
52
stac_file,
53
+ lint,
54
recursive,
55
core,
56
extensions,
@@ -57,6 +61,10 @@ def main(
57
61
no_output,
58
62
log_file,
59
63
):
64
65
+ if lint is True:
66
+ pass
67
60
68
stac = StacValidate(
69
stac_file=stac_file,
70
recursive=recursive,
0 commit comments