74117bba96
# Description Move devkits and azures    We have some critical issues when install streamlit with poetry. And pf scripts, will fix in later patches. # All Promptflow Contribution checklist: - [ ] **The pull request does not introduce [breaking changes].** - [ ] **CHANGELOG is updated for new features, bug fixes or other significant changes.** - [ ] **I have read the [contribution guidelines](../CONTRIBUTING.md).** - [ ] **Create an issue and link to the pull request to get dedicated review from promptflow team. Learn more: [suggested workflow](../CONTRIBUTING.md#suggested-workflow).** ## General Guidelines and Best Practices - [ ] Title of the pull request is clear and informative. - [ ] There are a small number of commits, each of which have an informative message. This means that previously merged commits do not appear in the history of the PR. For more information on cleaning up the commits in your PR, [see this page](https://github.com/Azure/azure-powershell/blob/master/documentation/development-docs/cleaning-up-commits.md). ### Testing Guidelines - [ ] Pull request includes test coverage for the included changes.
55 lines
1.2 KiB
INI
55 lines
1.2 KiB
INI
[flake8]
|
|
extend-ignore = E203, E266, W503, F403, F821
|
|
max-line-length = 120
|
|
enable-extensions = E123,E133,E241,E242,E704,W505
|
|
exclude =
|
|
.git
|
|
.tox
|
|
.eggs
|
|
__pycache__
|
|
tests/fixtures/*
|
|
docs/*
|
|
venv,.pytest_cache
|
|
build
|
|
src/promptflow-azure/promptflow/azure/_restclient
|
|
src/promptflow-azure/promptflow/azure/_models
|
|
src/promptflow-core/promptflow/core/_connection_provider/_models
|
|
src/promptflow/tests/test_configs/*
|
|
import-order-style = google
|
|
|
|
[mypy]
|
|
ignore_missing_imports = True
|
|
disallow_untyped_defs = True
|
|
|
|
[mypy-pytest,pytest_mock]
|
|
ignore_missing_imports = True
|
|
|
|
[tool:pycln]
|
|
quiet = True
|
|
|
|
[black]
|
|
line_length = 120
|
|
|
|
[pycln]
|
|
silence = True
|
|
|
|
[isort]
|
|
# we use check for make fmt*
|
|
profile = "black"
|
|
# no need to fmt ignored
|
|
skip_gitignore = true
|
|
# needs to be the same as in black
|
|
line_length = 120
|
|
use_parentheses = true
|
|
include_trailing_comma = true
|
|
honor_noqa = true
|
|
ensure_newline_before_comments = true
|
|
skip_glob = [
|
|
docs/**,
|
|
pipelines/**,
|
|
pytest/**,
|
|
samples/**,
|
|
]
|
|
known_third_party = azure,mock,numpy,pandas,pydash,pytest,pytest_mock,requests,setuptools,six,sklearn,tqdm,urllib3,utilities,utils,yaml,jsonschema,strictyaml,jwt,pathspec,isodate,docker
|
|
known_first_party = promptflow
|