Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/check-build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,11 @@ jobs:
with:
enable-cache: true

- name: Install CCFT-PyMarkdown From Locked Dependencies
- name: Install PyMarkdown From Locked Dependencies
run: uv sync --only-group lint-format

- name: Run PyMarkdown scan
run: uv run -- ccft-pymarkdown scan-all
run: uv run -- pymarkdown scan .

pytest:
needs: [uv-check]
Expand Down
8 changes: 3 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ If you are submitting a feature request, please include the steps to implement t
They combine related [listeners](https://guide.pycord.dev/getting-started/more-features#event-handlers) and [commands](https://guide.pycord.dev/category/application-commands) (each as individual methods) into one class.
There are separate cog files for each activity, and one [`__init__.py`](cogs/__init__.py) file which instantiates them all:

<!--- pyml disable-next-line no-emphasis-as-heading-->
*For more information about the purpose of each cog, please look at the documentation within the files themselves*
> [!IMPORTANT]
> For more information about the purpose of each cog, please look at the documentation within the files themselves

* [`cogs/__init__.py`](cogs/__init__.py): instantiates all the cog classes within this directory

Expand Down Expand Up @@ -168,11 +168,9 @@ So it is suggested to avoid using it, and run [mypy](https://mypy-lang.org) from
It can be run with the following command:

```shell
uv run ccft-pymarkdown scan-all --with-git
uv run pymarkdown scan .
```

This command includes the removal of custom-formatted tables. See the [CCFT-PyMarkdown tool](https://github.com/CarrotManMatt/CCFT-PyMarkdown) for more information on linting Markdown files that contain custom-formatted tables.

### Git Commit Messages

Commit messages should be written in the imperative present tense. For example, "Fix bug #1".
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ uv sync
> [!TIP]
> Syncing the dependencies is not required. uv performs this automatically every time the `uv run` command is used


### Creating Your [Bot](https://discord.com/developers/docs/topics/oauth2#bot-vs-user-accounts)

A full guide on how to create your bot's account can be found [here; on Pycord's wiki](https://docs.pycord.dev/en/stable/discord.html).
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dev = [
{ include-group = "test" },
{ include-group = "type-check" },
]
lint-format = ["ccft-pymarkdown>=2.0", "ruff>=0.12"]
lint-format = ["pymarkdownlnt>=0.9.28", "ruff>=0.12"]
main = [
"asyncstdlib>=3.13",
"beautifulsoup4>=4.12",
Expand Down
Loading