-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.cfg
51 lines (45 loc) · 1.03 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[bumpversion]
current_version = 2.0.0
commit = True
tag = False
[bumpversion:file:djangocms_icon/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[bumpversion:file:CHANGELOG.rst]
search =
unreleased
==========
replace =
unreleased
==========
{new_version} {utcnow:%%Y-%%m-%%d}
================
[flake8]
max-line-length = 119
exclude =
*.egg-info,
.eggs,
.git,
.settings,
.tox,
build,
data,
dist,
docs,
*migrations*,
requirements,
tmp
[isort]
line_length = 119
skip = manage.py, *migrations*, .tox, .eggs, data, .env, .venv
include_trailing_comma = true
multi_line_output = 5
lines_after_imports = 2
default_section = THIRDPARTY
sections = FUTURE, STDLIB, DJANGO, THIRDPARTY, FIRSTPARTY, LOCALFOLDER
known_first_party = djangocms_icon
known_cms = cms, menus
known_django = django
[codespell]
skip = *.js,*.po,./node_modules/*,./.idea/*,./.env/*,./.venv/*,./build/*,./djangocms_icon.egg-info/*
ignore-words-list = alpha-numeric,assertIn,THIRDPARTY