-
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Branch: refs/heads/main Date: 2024-12-16T20:18:31-08:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.api@4dfc603 fix lint Files changed: M MANIFEST.in
- Loading branch information
Showing
1 changed file
with
5 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,15 +2,14 @@ Repository: plone.api | |
|
||
|
||
Branch: refs/heads/main | ||
Date: 2024-12-16T20:13:49-08:00 | ||
Date: 2024-12-16T20:18:31-08:00 | ||
Author: David Glick (davisagli) <[email protected]> | ||
Commit: https://github.com/plone/plone.api/commit/516590d2ee69a6a3075b3ae6d82689890e0e4863 | ||
Commit: https://github.com/plone/plone.api/commit/4dfc6039cfc2cbf7c2f735d7da67c3ce99d8cace | ||
|
||
Add .vscode/settings.json to prevent .md format on save | ||
fix lint | ||
|
||
Files changed: | ||
A .vscode/settings.json | ||
M .gitignore | ||
M MANIFEST.in | ||
|
||
b'diff --git a/.gitignore b/.gitignore\nindex 486392f6..aec614e6 100644\n--- a/.gitignore\n+++ b/.gitignore\n@@ -18,7 +18,6 @@ dist/\n docs/_build\n __pycache__/\n .tox\n-.vscode/\n node_modules/\n \n # venv / buildout related\ndiff --git a/.vscode/settings.json b/.vscode/settings.json\nnew file mode 100644\nindex 00000000..a836b007\n--- /dev/null\n+++ b/.vscode/settings.json\n@@ -0,0 +1,5 @@\n+{\n+ "[markdown]": {\n+ "editor.formatOnSave": false\n+ }\n+}\n' | ||
b'diff --git a/MANIFEST.in b/MANIFEST.in\nindex b9ca1361..162a5ec9 100644\n--- a/MANIFEST.in\n+++ b/MANIFEST.in\n@@ -13,6 +13,7 @@ global-exclude *.pyc\n include pyproject.toml\n recursive-exclude news *\n exclude news\n+recursive-exclude .vscode *\n \n # added by check-manifest\n recursive-include src *.py\n' | ||
|