Skip to content

Commit 876e4a9

Browse files
authored
Contribution cleanup (#1412)
* adding pylint to requirements-dev.txt * fixing package name references * removing invalid black configuration * adding mypy to requirements-dev.txt * adding bandit & doc8 to requirements-dev.txt
1 parent fcca950 commit 876e4a9

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
[tool.black]
88
target-version = ['py36', 'py37', 'py38', 'py39']
99
line-length = 120
10-
include_trailing_comma = false
1110
include = '(atlassian|examples|tests)\/.*(\.py|GET|POST)'
1211

1312
[tool.pylint.format]
@@ -617,4 +616,4 @@ min-public-methods = 2
617616
# "BaseException, Exception".
618617
overgeneral-exceptions = '''BaseException,
619618
Exception
620-
'''
619+
'''

requirements-dev.txt

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ coverage
1010
codecov
1111
# used for example confluence attach file
1212
python-magic
13+
pylint
14+
mypy
15+
bandit
16+
doc8
1317

1418
# On October 4, 2022 importlib-metadata released importlib-metadata 5.0.0 and in version 5.0.0
1519
# They have Deprecated EntryPoints and that's why you are facing this error.

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
deprecated
1+
Deprecated
22
requests>=2.8.1
33
six
44
oauthlib
5-
requests_oauthlib
5+
requests-oauthlib
66
requests-kerberos==0.14.0
77
# Add this package to search string in json
88
jmespath

0 commit comments

Comments
 (0)