Skip to content

Commit

Permalink
Run Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjharder committed Jan 17, 2024
1 parent 57af840 commit 9857af1
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Format with Prettier'
name: "Format with Prettier"
on:
pull_request:

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Spellcheck with cspell'
name: "Spellcheck with cspell"
on:
pull_request:

Expand All @@ -15,5 +15,5 @@ jobs:
inline: warning
strict: false
incremental_files_only: true
config: '.cspell.json'
verbose: false
config: ".cspell.json"
verbose: false
2 changes: 1 addition & 1 deletion docs/packaging/package.yml.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Not all fields in `package.yml` are mandatory, but a small selection are. Below

### Optional, supported keys

Key Name | Type | Description |
| Key Name | Type | Description |
| --------------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **clang** | `bool` | Set to `yes` if this package benefits from being built with Clang. |
| **extract** | `bool` | Set to `no` to disable automatic source extraction. |
Expand Down
2 changes: 1 addition & 1 deletion docs/packaging/packaging-practices.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ rundeps:
## Check dependencies

Check dependencies are a special kind of build dependency reserved for automatic package testing by `solbuild`. Check dependencies should only be used during the `check` build phase.
When a package is part of an automatic build sequence, these dependencies will **not** be considered when determining build order.
When a package is part of an automatic build sequence, these dependencies will **not** be considered when determining build order.

### Example

Expand Down
12 changes: 6 additions & 6 deletions docs/user/contributing/style.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ This section is based on the [Red Hat supplementary style guide.](https://redhat

Admonitions should draw the reader’s attention to certain information. Keep admonitions to a minimum, and avoid placing multiple admonitions close to one another. If multiple admonitions are necessary, restructure the information by moving the less-important statements into the flow of the main content. See the [Docusaurus documentation](https://docusaurus.io/docs/markdown-features/admonitions) to learn the correct syntax.

| Type | Description |
| -------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Note | Additional guidance or advice that improves product configuration, performance, or supportability |
| Important | Advisory information essential to the completion of a task or default configuration settings. Users must not disregard this information. |
| Warning/Danger | Information about potential system damage, data loss, or a support-related issue if the user disregards this admonition. If available, offer information to avoid the problem in the future or state where to find more information. |
| Tip | Recommendations, suggestions, and alternative methods that might not be obvious. Tips are not essential to using the product. |
| Type | Description |
| -------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Note | Additional guidance or advice that improves product configuration, performance, or supportability |
| Important | Advisory information essential to the completion of a task or default configuration settings. Users must not disregard this information. |
| Warning/Danger | Information about potential system damage, data loss, or a support-related issue if the user disregards this admonition. If available, offer information to avoid the problem in the future or state where to find more information. |
| Tip | Recommendations, suggestions, and alternative methods that might not be obvious. Tips are not essential to using the product. |

## Code blocks

Expand Down
19 changes: 9 additions & 10 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ const config = {
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
//editUrl: "https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/",
blogTitle: 'Solus DevLog',
blogDescription: 'The Solus Development (b)log!',
postsPerPage: 'ALL',
blogSidebarTitle: 'All posts',
blogSidebarCount: 'ALL',
path: 'devlog',
blogTitle: "Solus DevLog",
blogDescription: "The Solus Development (b)log!",
postsPerPage: "ALL",
blogSidebarTitle: "All posts",
blogSidebarCount: "ALL",
path: "devlog",
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
Expand Down Expand Up @@ -109,10 +109,9 @@ const config = {
label: "Packaging",
},
{
to: 'blog',
label: 'Dev Log',
position: 'left'

to: "blog",
label: "Dev Log",
position: "left",
},
],
},
Expand Down

0 comments on commit 9857af1

Please sign in to comment.