• S sverchok
  • Информация о проекте
    • Информация о проекте
    • Активность
    • Метки
    • Участники
  • Репозиторий
    • Репозиторий
    • Файлы
    • Коммиты
    • Ветки
    • Теги
    • Участники
    • Диаграмма
    • Сравнение
  • Задачи 148
    • Задачи 148
    • Список
    • Доски
    • Спринты
  • Запросы на слияние 21
    • Запросы на слияние 21
  • CI/CD
    • CI/CD
    • Конвейеры
    • Задания
    • Расписания
  • Развертывания
    • Развертывания
    • Окружения
    • Релизы
  • Пакеты и реестры
    • Пакеты и реестры
    • Реестр пакетов
    • Реестр контейнеров
  • Мониторинг
    • Мониторинг
    • Инциденты
  • Аналитика
    • Аналитика
    • Поток ценности
    • CI/CD
    • Репозиторий
  • Wiki
    • Wiki
  • Сниппеты
    • Сниппеты
  • Активность
  • Диаграмма
  • Создать новую задачу
  • Задания
  • Коммиты
  • Доски с задачами
Свернуть панель
  • nikitronn
  • sverchok
  • Wiki
  • Contributing

Contributing · Изменения

История страницы
Updated Contributing (markdown) создал Июн 20, 2017 по автору Dealga McArdle's avatar Dealga McArdle
Скрыть пробелы
Построчно Рядом
Contributing.md
Просмотреть страницу @e537190a
- [Git Practices](git-practices) - [Git Practices](git-practices)
### Contributing to Sverchok
Please follow our coding conventions. The simpler your contribution is, the easier it is to follow our conventions. If you are contributing something larger, look at the larger existing nodes for suggestions on formatting and naming conventions.
#### pep-8
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. If you use PyLint, these are some of the ignores you'll find in the codebase:
```python
# pylint: disable=w0122
# pylint: disable=w0123
# pylint: disable=w0141
# pylint: disable=w0613
# pylint: disable=C0326
```
What do those mean?
| code | meaning | controversial? |
|------|---------|----------------|
|w0122 | Use of exec | depends, we will try to provide an alternative if possible |
|w0123 | eval-used | depends, we will try to provide an alternative if possible |
|w0141 | Used builtin function | this means you might have used `map` or `filter` |
|w0613 | unused-argument | often the context argmenent in draw_buttons is unused.. |
|C0326 | bad-whitespace | sometimes whitespace in comma separated content is a bit annoying.. |
Клонировать репозиторий
  • Custom Defaults
  • Macros
  • Contributing
    • Git practices

Sverchok Node Tutorial (multi page)