This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from lalithkota/17.0-develop
Migrated latest modules from 15.0. Fixed Precommit linters formatters according to 17.0
- Loading branch information
Showing
54 changed files
with
244 additions
and
587 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,26 @@ | ||
# Do NOT update manually; changes here will be overwritten by Copier | ||
_commit: v1.14.1 | ||
_commit: v1.20 | ||
_src_path: https://github.com/OCA/oca-addons-repo-template.git | ||
additional_ruff_rules: [] | ||
ci: GitHub | ||
dependency_installation_mode: PIP | ||
convert_readme_fragments_to_markdown: false | ||
generate_requirements_txt: true | ||
github_check_license: true | ||
github_check_license: false | ||
github_ci_extra_env: {} | ||
github_enable_codecov: false | ||
github_enable_codecov: true | ||
github_enable_makepot: true | ||
github_enable_stale_action: false | ||
github_enforce_dev_status_compatibility: true | ||
github_enforce_dev_status_compatibility: false | ||
include_wkhtmltopdf: false | ||
odoo_version: 15.0 | ||
odoo_test_flavor: Both | ||
odoo_version: 17.0 | ||
org_name: OpenG2P | ||
org_slug: OpenG2P | ||
rebel_module_groups: [] | ||
repo_description: This repo is contains modules used by OpenG2P for Security | ||
repo_name: OpenG2P Security | ||
repo_slug: openg2p-security | ||
repo_website: https://github.com/OpenG2P/openg2p-security | ||
travis_apt_packages: [] | ||
travis_apt_sources: [] | ||
use_pyproject_toml: true | ||
use_ruff: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ __pycache__/ | |
*.py[cod] | ||
/.venv | ||
/.pytest_cache | ||
/.ruff_cache | ||
|
||
# C extensions | ||
*.so | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
|
||
target-version = "py310" | ||
fix = true | ||
line-length = 110 | ||
|
||
[lint] | ||
extend-select = [ | ||
"B", | ||
"C90", | ||
"E501", # line too long (default 88) | ||
"I", # isort | ||
"UP", # pyupgrade | ||
] | ||
exclude = ["setup/*"] | ||
|
||
[format] | ||
exclude = ["setup/*"] | ||
|
||
[per-file-ignores] | ||
"__init__.py" = ["F401", "I001"] # ignore unused and unsorted imports in __init__.py | ||
"__manifest__.py" = ["B018"] # useless expression | ||
|
||
[isort] | ||
section-order = ["future", "standard-library", "third-party", "odoo", "odoo-addons", "first-party", "local-folder"] | ||
|
||
[isort.sections] | ||
"odoo" = ["odoo"] | ||
"odoo-addons" = ["odoo.addons"] | ||
|
||
[mccabe] | ||
max-complexity = 16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.