mirror of
https://github.com/OCA/knowledge.git
synced 2025-07-16 04:02:56 -06:00
[IMP] update dotfiles [ci skip]
This commit is contained in:
parent
5e4dcb47d8
commit
3edd537a06
@ -1,5 +1,5 @@
|
|||||||
# Do NOT update manually; changes here will be overwritten by Copier
|
# Do NOT update manually; changes here will be overwritten by Copier
|
||||||
_commit: v1.1.1
|
_commit: v1.1.4
|
||||||
_src_path: gh:oca/oca-addons-repo-template
|
_src_path: gh:oca/oca-addons-repo-template
|
||||||
dependency_installation_mode: PIP
|
dependency_installation_mode: PIP
|
||||||
generate_requirements_txt: true
|
generate_requirements_txt: true
|
||||||
|
4
.flake8
4
.flake8
@ -1,5 +1,5 @@
|
|||||||
[flake8]
|
[flake8]
|
||||||
max-line-length = 80
|
max-line-length = 88
|
||||||
max-complexity = 16
|
max-complexity = 16
|
||||||
# B = bugbear
|
# B = bugbear
|
||||||
# B9 = bugbear opinionated (incl line length)
|
# B9 = bugbear opinionated (incl line length)
|
||||||
@ -8,3 +8,5 @@ select = C,E,F,W,B,B9
|
|||||||
# E501: flake8 line length (covered by bugbear B950)
|
# E501: flake8 line length (covered by bugbear B950)
|
||||||
# W503: line break before binary operator (black behaviour)
|
# W503: line break before binary operator (black behaviour)
|
||||||
ignore = E203,E501,W503
|
ignore = E203,E501,W503
|
||||||
|
per-file-ignores=
|
||||||
|
__init__.py:F401
|
||||||
|
@ -10,3 +10,4 @@ known_odoo=odoo
|
|||||||
known_odoo_addons=odoo.addons
|
known_odoo_addons=odoo.addons
|
||||||
sections=FUTURE,STDLIB,THIRDPARTY,ODOO,ODOO_ADDONS,FIRSTPARTY,LOCALFOLDER
|
sections=FUTURE,STDLIB,THIRDPARTY,ODOO,ODOO_ADDONS,FIRSTPARTY,LOCALFOLDER
|
||||||
default_section=THIRDPARTY
|
default_section=THIRDPARTY
|
||||||
|
ensure_newline_before_comments = True
|
||||||
|
@ -5,7 +5,7 @@ exclude: |
|
|||||||
# Files and folders generated by bots, to avoid loops
|
# Files and folders generated by bots, to avoid loops
|
||||||
^setup/|/static/description/index\.html$|
|
^setup/|/static/description/index\.html$|
|
||||||
# We don't want to mess with tool-generated files
|
# We don't want to mess with tool-generated files
|
||||||
.svg$|
|
.svg$|/tests/([^/]+/)?cassettes/|
|
||||||
# Maybe reactivate this when all README files include prettier ignore tags?
|
# Maybe reactivate this when all README files include prettier ignore tags?
|
||||||
^README\.md$|
|
^README\.md$|
|
||||||
# Library files can have extraneous formatting (even minimized)
|
# Library files can have extraneous formatting (even minimized)
|
||||||
@ -38,7 +38,13 @@ repos:
|
|||||||
rev: v1.4
|
rev: v1.4
|
||||||
hooks:
|
hooks:
|
||||||
- id: autoflake
|
- id: autoflake
|
||||||
args: ["-i", "--ignore-init-module-imports"]
|
args:
|
||||||
|
- --expand-star-imports
|
||||||
|
- --ignore-init-module-imports
|
||||||
|
- --in-place
|
||||||
|
- --remove-all-unused-imports
|
||||||
|
- --remove-duplicate-keys
|
||||||
|
- --remove-unused-variables
|
||||||
- repo: https://github.com/psf/black
|
- repo: https://github.com/psf/black
|
||||||
rev: 20.8b1
|
rev: 20.8b1
|
||||||
hooks:
|
hooks:
|
||||||
@ -47,12 +53,13 @@ repos:
|
|||||||
rev: v2.1.2
|
rev: v2.1.2
|
||||||
hooks:
|
hooks:
|
||||||
- id: prettier
|
- id: prettier
|
||||||
name: prettier + plugin-xml
|
name: prettier (with plugin-xml)
|
||||||
additional_dependencies:
|
additional_dependencies:
|
||||||
- "prettier@2.1.2"
|
- "prettier@2.1.2"
|
||||||
- "@prettier/plugin-xml@0.12.0"
|
- "@prettier/plugin-xml@0.12.0"
|
||||||
args:
|
args:
|
||||||
- --plugin=@prettier/plugin-xml
|
- --plugin=@prettier/plugin-xml
|
||||||
|
files: \.(css|htm|html|js|json|jsx|less|md|scss|toml|ts|xml|yaml|yml)$
|
||||||
- repo: https://github.com/pre-commit/mirrors-eslint
|
- repo: https://github.com/pre-commit/mirrors-eslint
|
||||||
rev: v7.8.1
|
rev: v7.8.1
|
||||||
hooks:
|
hooks:
|
||||||
@ -87,6 +94,7 @@ repos:
|
|||||||
rev: v2.7.2
|
rev: v2.7.2
|
||||||
hooks:
|
hooks:
|
||||||
- id: pyupgrade
|
- id: pyupgrade
|
||||||
|
args: ["--keep-percent-format"]
|
||||||
- repo: https://github.com/PyCQA/isort
|
- repo: https://github.com/PyCQA/isort
|
||||||
rev: 5.5.1
|
rev: 5.5.1
|
||||||
hooks:
|
hooks:
|
||||||
@ -109,13 +117,7 @@ repos:
|
|||||||
rev: 3.8.3
|
rev: 3.8.3
|
||||||
hooks:
|
hooks:
|
||||||
- id: flake8
|
- id: flake8
|
||||||
name: flake8 except __init__.py
|
name: flake8
|
||||||
exclude: /__init__\.py$
|
|
||||||
additional_dependencies: ["flake8-bugbear==20.1.4"]
|
|
||||||
- id: flake8
|
|
||||||
name: flake8 only __init__.py
|
|
||||||
args: ["--extend-ignore=F401"] # ignore unused imports in __init__.py
|
|
||||||
files: /__init__\.py$
|
|
||||||
additional_dependencies: ["flake8-bugbear==20.1.4"]
|
additional_dependencies: ["flake8-bugbear==20.1.4"]
|
||||||
- repo: https://github.com/PyCQA/pylint
|
- repo: https://github.com/PyCQA/pylint
|
||||||
rev: pylint-2.5.3
|
rev: pylint-2.5.3
|
||||||
|
Loading…
Reference in New Issue
Block a user