Skip to content

Commit

Permalink
Move pytest-cov and pylint configuration to setup.cfg (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
jantrienes authored Dec 16, 2020
1 parent 5e5422e commit ac8c8b3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
9 changes: 0 additions & 9 deletions .coveragerc

This file was deleted.

2 changes: 0 additions & 2 deletions .pylintrc

This file was deleted.

13 changes: 13 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
[isort]
known_first_party=deidentify

[pylint.TYPECHECK]
ignored-modules=spacy.symbols, spacy.gold, spacy.matcher, spacy.tokens.doc

[coverage:report]
exclude_lines =
def arg_parser
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.:
def __repr__
def __str__
def __unicode__

0 comments on commit ac8c8b3

Please sign in to comment.