Skip to content

Commit

Permalink
Merge pull request #207 from Dessia-tech/feat/reference_path
Browse files Browse the repository at this point in the history
Reference Path [TO BE DISCUSSED]
  • Loading branch information
GhislainJ authored Jan 6, 2023
2 parents c8107af + 497b26a commit 3dee71d
Show file tree
Hide file tree
Showing 3 changed files with 154 additions and 120 deletions.
14 changes: 7 additions & 7 deletions code_pylint.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@

MAX_ERROR_BY_TYPE = {
'protected-access': 26,
'invalid-name': 18,
'invalid-name': 13,
'consider-using-f-string': 2,
'no-else-return': 17,
'arguments-differ': 12,
'no-member': 1,
'too-many-locals': 2,
'wrong-import-order': 10,
'too-many-locals': 3,
'wrong-import-order': 1,
'too-many-branches': 1,
'unused-import': 1,
'unused-argument': 1,
'unused-argument': 4,
'cyclic-import': 11,
'no-self-use': 6,
'unused-variable': 1,
'trailing-whitespace': 11,
'empty-docstring': 7,
'missing-module-docstring': 9,
'missing-module-docstring': 4,
'too-many-arguments': 15,
'too-few-public-methods': 7,
'unnecessary-comprehension': 5,
Expand All @@ -45,7 +45,7 @@
'consider-merging-isinstance': 6,
'abstract-method': 25,
'import-outside-toplevel': 7,
'too-many-instance-attributes': 4,
'too-many-instance-attributes': 3,
'consider-iterating-dictionary': 4,
'attribute-defined-outside-init': 3,
'simplifiable-if-expression': 3,
Expand All @@ -68,7 +68,7 @@
'unexpected-keyword-arg': 1,
'redefined-builtin': 1,
'arguments-renamed': 0,
'ungrouped-imports': 0,
'ungrouped-imports': 1,
'super-init-not-called': 1,
'superfluous-parens': 0,
'unused-wildcard-import': 0,
Expand Down
Loading

0 comments on commit 3dee71d

Please sign in to comment.