dblume commited on 2024-10-04 21:14:19
Showing 3 changed files, with 9 additions and 10 deletions.
| ... | ... |
@@ -60,16 +60,12 @@ except for workspace.xml and tasks.xml](https://intellij-support.jetbrains.com/h |
| 60 | 60 |
[Sublime](https://www.sublimetext.com/) uses the |
| 61 | 61 |
[testpython.sublime-project](/testpython.git/blob/main/testpython.sublime-project) file. |
| 62 | 62 |
|
| 63 |
-### GitHub's Atom |
|
| 63 |
+## Style |
|
| 64 | 64 |
|
| 65 |
-Download from [atom.io](https://atom.io/). These are useful modules: |
|
| 65 |
+If you want your style similar to PEP-9, you can check the style of your code |
|
| 66 |
+with ''pycodestyle'': |
|
| 66 | 67 |
|
| 67 |
-* [read-only-indicator](https://atom.io/packages/read-only-indicator) by alefragnani. (Feature not available in Sublime Text 3.) |
|
| 68 |
-* [script](https://atom.io/packages/script) by rgbkrk, for running scripts. |
|
| 69 |
-* [project-manager](https://atom.io/packages/project-manager) by danielbrodin. |
|
| 70 |
- |
|
| 71 |
-If you install project-manager, it looks for [a local "project.cson" file](/testpython.git/blob/main/project.cson), and |
|
| 72 |
-merges those settings with what is in the .atom `projects.cson` file. |
|
| 68 |
+ pycodestyle --first --show-source --ignore=E501 *.py |
|
| 73 | 69 |
|
| 74 | 70 |
## Requirements |
| 75 | 71 |
|
| ... | ... |
@@ -1,6 +1,6 @@ |
| 1 | 1 |
# |
| 2 |
-# This file is autogenerated by pip-compile with python 3.9 |
|
| 3 |
-# To update, run: |
|
| 2 |
+# This file is autogenerated by pip-compile with Python 3.8 |
|
| 3 |
+# by the following command: |
|
| 4 | 4 |
# |
| 5 | 5 |
# pip-compile requirements.in |
| 6 | 6 |
# |
| ... | ... |
@@ -12,6 +12,8 @@ idna==3.3 |
| 12 | 12 |
# via requests |
| 13 | 13 |
marshmallow==3.14.1 |
| 14 | 14 |
# via -r requirements.in |
| 15 |
+pycodestyle==2.12.1 |
|
| 16 |
+ # via -r requirements.in |
|
| 15 | 17 |
requests==2.27.1 |
| 16 | 18 |
# via -r requirements.in |
| 17 | 19 |
urllib3==1.26.8 |
| 18 | 20 |