1
0
mirror of synced 2025-12-19 18:10:59 -05:00

Fix trailing spaces in content and data (#37904)

This commit is contained in:
Grace Park
2023-06-23 10:45:10 -07:00
committed by GitHub
parent 07dcb8c294
commit cbda3f2434
369 changed files with 642 additions and 641 deletions

View File

@@ -84,7 +84,7 @@ This command downloads all dependencies to the shared cache on the local disk.
{% note %}
**Notes:**
**Notes:**
- Running the `codeql pack add` and `codeql pack install` commands will generate or update the `codeql-pack.lock.yml` file. This file should be checked-in to version control. The `codeql-pack.lock.yml` file contains the precise version numbers used by the pack. For more information, see "[About codeql-pack.lock.yml files](/code-security/codeql-cli/codeql-cli-reference/about-codeql-packs#about-codeql-pack-lock)."

View File

@@ -55,7 +55,7 @@ You must specify:
| Java{% ifversion codeql-kotlin-beta %}/Kotlin{% endif %} | `java`
| JavaScript/TypeScript | `javascript`
| Python | `python`
| Ruby | `ruby` {% ifversion codeql-swift-beta %}
| Ruby | `ruby` {% ifversion codeql-swift-beta %}
| Swift | `swift` {% endif %}
{% data reusables.code-scanning.beta-kotlin-or-swift-support %}
@@ -213,7 +213,7 @@ The following examples are designed to give you an idea of some of the build com
{% ifversion codeql-swift-beta %}
- Swift project built from an Xcode project or workspace. By default, the largest Swift target is built:
It's a good idea to ensure that the project is in a clean state and that there are no build artefacts available.
```
@@ -233,7 +233,7 @@ The following examples are designed to give you an idea of some of the build com
codeql database create -l swift -c "xcodebuild build -target your-target" swift-database
```
You can pass the `archive` and `test` options to `xcodebuild`. However, the standard `xcodebuild` command is recommended as it should be the fastest, and should be all that CodeQL requires for a successful scan.
You can pass the `archive` and `test` options to `xcodebuild`. However, the standard `xcodebuild` command is recommended as it should be the fastest, and should be all that CodeQL requires for a successful scan.
- Swift project built using a custom build script: