Skip to content

Commit

Permalink
Try to fix config
Browse files Browse the repository at this point in the history
  • Loading branch information
benjello committed Nov 26, 2024
1 parent 510d26e commit 23b8bce
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions .yamllint
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
extends: relaxed

rules:
truthy: enable
# Disable warning level rules to remove flood in yamllint output
# YAML file should be modified to comply to those rules before activation
indentation: disable
line-length: disable
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ rst-roles = ["any", "attr", "class", "exc", "func", "meth", "obj"]
strictness = "short"

[tool.pylint.message_control]
disable = "all"
disable = ["all"]
enable = ["C0115", "C0116", "R0401"]
score = "no"
score = ["no"]

[tool.pep8]
hang-closing = true
Expand All @@ -116,7 +116,7 @@ in-place = true
addopts = "--doctest-modules --disable-pytest-warnings --showlocals"
testpaths = "openfisca_survey_manager"
doctest_optionflags = "ELLIPSIS IGNORE_EXCEPTION_DETAIL NUMBER NORMALIZE_WHITESPACE"
python_files = "**/*.py"
python_files = ["**/*.py"]


[tool.coverage.paths]
Expand Down

0 comments on commit 23b8bce

Please sign in to comment.