Skip to content

Commit ac8c8b3

Browse files
authored
Move pytest-cov and pylint configuration to setup.cfg (#47)
1 parent 5e5422e commit ac8c8b3

3 files changed

Lines changed: 13 additions & 11 deletions

File tree

.coveragerc

Lines changed: 0 additions & 9 deletions
This file was deleted.

.pylintrc

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.cfg

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,15 @@
11
[isort]
22
known_first_party=deidentify
3+
4+
[pylint.TYPECHECK]
5+
ignored-modules=spacy.symbols, spacy.gold, spacy.matcher, spacy.tokens.doc
6+
7+
[coverage:report]
8+
exclude_lines =
9+
def arg_parser
10+
raise AssertionError
11+
raise NotImplementedError
12+
if __name__ == .__main__.:
13+
def __repr__
14+
def __str__
15+
def __unicode__

0 commit comments

Comments
 (0)