mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 13:26:01 +02:00
pio-check: add page (#5519)
This commit is contained in:
parent
2e1d5f551c
commit
5c9261d7fd
1 changed files with 24 additions and 0 deletions
24
pages/common/pio-check.md
Normal file
24
pages/common/pio-check.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# pio check
|
||||
|
||||
> Perform a static analysis check on a PlatformIO project.
|
||||
> More information: <https://docs.platformio.org/en/latest/core/userguide/cmd_check.html>.
|
||||
|
||||
- Perform a basic analysis check on the current project:
|
||||
|
||||
`pio check`
|
||||
|
||||
- Perform a basic analysis check on a specific project:
|
||||
|
||||
`pio check --project-dir {{project_dir}}`
|
||||
|
||||
- Perform an analysis check for a specific environment:
|
||||
|
||||
`pio check --environment {{environment}}`
|
||||
|
||||
- Perform an analysis check and only report a specified defect severity type:
|
||||
|
||||
`pio check --severity {{low|medium|high}}`
|
||||
|
||||
- Perform an analysis check and show detailed information when processing environments:
|
||||
|
||||
`pio check --verbose`
|
Loading…
Add table
Reference in a new issue