Skip to content

Commit 55247ba

Browse files
committed
Update docs & CI
1 parent e549070 commit 55247ba

2 files changed

Lines changed: 5 additions & 7 deletions

File tree

.github/workflows/check-build-deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,11 @@ jobs:
129129
with:
130130
enable-cache: true
131131

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

135135
- name: Run PyMarkdown scan
136-
run: uv run -- ccft-pymarkdown scan-all
136+
run: uv run -- pymarkdown scan .
137137

138138
pytest:
139139
needs: [uv-check]

CONTRIBUTING.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ If you are submitting a feature request, please include the steps to implement t
6868
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.
6969
There are separate cog files for each activity, and one [`__init__.py`](cogs/__init__.py) file which instantiates them all:
7070

71-
<!--- pyml disable-next-line no-emphasis-as-heading -->
72-
*For more information about the purpose of each cog, please look at the documentation within the files themselves*
71+
> [!IMPORTANT]
72+
> For more information about the purpose of each cog, please look at the documentation within the files themselves
7373
7474
* [`cogs/__init__.py`](cogs/__init__.py): instantiates all the cog classes within this directory
7575

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

170170
```shell
171-
uv run ccft-pymarkdown scan-all --with-git
171+
uv run pymarkdown scan .
172172
```
173173

174-
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.
175-
176174
### Git Commit Messages
177175

178176
Commit messages should be written in the imperative present tense. For example, "Fix bug #1".

0 commit comments

Comments
 (0)