Skip to content

Commit 2965bf2

Browse files
Merge main into 479-auto-slow-mode
2 parents e7fcc81 + 26d4d36 commit 2965bf2

5 files changed

Lines changed: 197 additions & 261 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".

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,6 @@ uv sync
142142
> [!TIP]
143143
> Syncing the dependencies is not required. uv performs this automatically every time the `uv run` command is used
144144
145-
146145
### Creating Your [Bot](https://discord.com/developers/docs/topics/oauth2#bot-vs-user-accounts)
147146

148147
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).

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dev = [
55
{ include-group = "test" },
66
{ include-group = "type-check" },
77
]
8-
lint-format = ["ccft-pymarkdown>=2.0", "ruff>=0.12"]
8+
lint-format = ["pymarkdownlnt>=0.9.28", "ruff>=0.12"]
99
main = [
1010
"asyncstdlib>=3.13",
1111
"beautifulsoup4>=4.12",

0 commit comments

Comments
 (0)