... | @@ -10,7 +10,7 @@ If you are relatively new to Python, check this [readability counts](https://www |
... | @@ -10,7 +10,7 @@ If you are relatively new to Python, check this [readability counts](https://www |
|
- [read pep 8 again](https://www.python.org/dev/peps/pep-0008/) (Python's style guide, not sverchok's style guide).
|
|
- [read pep 8 again](https://www.python.org/dev/peps/pep-0008/) (Python's style guide, not sverchok's style guide).
|
|
- Use a pep8 checker or [pylint](https://www.pylint.org/) - it's like someone watching over your shoulder trying to get you to write more consistent code.
|
|
- Use a pep8 checker or [pylint](https://www.pylint.org/) - it's like someone watching over your shoulder trying to get you to write more consistent code.
|
|
|
|
|
|
We'll scan pull requests and suggest improvements if we have to. Nicer looking code is a lot more pleasant to debug. We follow pep8 mostly. Line-length however is not something we obsess about. Make your lines as long as you need. We also ignore smaller style issues. These are some of the ignores you'll find in the codebase:
|
|
We'll scan pull requests and suggest improvements if we have to. Nicer looking code is a lot more pleasant to debug. We follow pep8 mostly. Line-length however is not something we obsess about. Make your lines as long as you need. We also ignore smaller style issues. These are some of the pylint ignores you'll find in the codebase:
|
|
|
|
|
|
```python
|
|
```python
|
|
# pylint: disable=w0122
|
|
# pylint: disable=w0122
|
... | | ... | |