forked from mindsdb/mindsdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
94 lines (93 loc) · 4.31 KB
/
.flake8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[flake8]
max-line-length = 120
ignore =
# E402
# Line too long
E501,
# Line break occurred before a binary operator
W503,
# Function is too complex
C901
per-file-ignores =
mindsdb/__main__.py: E402
mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py: E241
exclude =
__init__.py,
build/*
mindsdb/grpc/*
# TODO: clean up this code
mindsdb/integrations/handlers/access_handler/access_handler.py
mindsdb/integrations/handlers/airtable_handler/airtable_handler.py
mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py
mindsdb/integrations/handlers/couchbase_handler/couchbase_handler.py
mindsdb/integrations/handlers/couchbase_handler/tests/test_couchbase_handler.py
mindsdb/integrations/handlers/crate_handler/crate_handler.py
mindsdb/integrations/handlers/crate_handler/tests/test_crate_handler.py
mindsdb/integrations/handlers/d0lt_handler/tests/test_d0lt_handler.py
mindsdb/integrations/handlers/databricks_handler/databricks_handler.py
mindsdb/integrations/handlers/datastax_handler/datastax_handler.py
mindsdb/integrations/handlers/db2_handler/*
mindsdb/integrations/handlers/druid_handler/druid_handler.py
mindsdb/integrations/handlers/dynamodb_handler/dynamodb_handler.py
mindsdb/integrations/handlers/elasticsearch_handler/elasticsearch_handler.py
mindsdb/integrations/handlers/firebird_handler
mindsdb/integrations/handlers/firebird_handler/firebird_handler.py
mindsdb/integrations/handlers/hive_handler/tests/test_hive_handler.py
mindsdb/integrations/handlers/informix_handler/informix_handler.py
mindsdb/integrations/handlers/informix_handler/tests/test_informix_handler.py
mindsdb/integrations/handlers/lightwood_handler/*
mindsdb/integrations/handlers/ludwig_handler/test_ludwig.py
mindsdb/integrations/handlers/mariadb_handler/tests/test_mariadb_handler.py
mindsdb/integrations/handlers/matrixone_handler/*
mindsdb/integrations/handlers/mlflow_handler/*
mindsdb/integrations/handlers/monetdb_handler/*
mindsdb/integrations/handlers/mongodb_handler/*
mindsdb/integrations/handlers/mssql_handler/*
mindsdb/integrations/handlers/mysql_handler/tests/test_mysql_handler.py
mindsdb/integrations/handlers/oracle_handler/oracle_handler.py
mindsdb/integrations/handlers/pinot_handler/pinot_handler.py
mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py
mindsdb/integrations/handlers/questdb_handler/*
mindsdb/integrations/handlers/redshift_handler/*
mindsdb/integrations/handlers/s3_handler/s3_handler.py
mindsdb/integrations/handlers/singlestore_handler/*
mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py
mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py
mindsdb/integrations/handlers/supabase_handler/tests/test_supabase_handler.py
mindsdb/integrations/handlers/tidb_handler/*
mindsdb/integrations/handlers/timescaledb_handler/*
mindsdb/integrations/handlers/trino_handler/trino_handler.py
mindsdb/integrations/handlers/vertica_handler/*
mindsdb/integrations/handlers/view_handler/view_handler.py
mindsdb/integrations/handlers/yugabyte_handler/*
mindsdb/integrations/handlers/opengauss_handler/*
mindsdb/integrations/libs/response.py
mindsdb/integrations/utilities/utils.py
mindsdb/interfaces/model/model_controller.py
mindsdb/migrations/env.py
mindsdb/utilities/log.py
tests/handler_tests/test_storage_handler.py
tests/integration_tests/flows/test_mysql_bin_api.py
tests/prediction_latency_test/*
tests/unit/executor_test_base.py
tests/unit/test_cache.py
tests/unit/test_executor.py
tests/unit/test_mongodb_handler.py
tests/unit/test_mongodb_server.py
tests/integration_tests/flows/conftest.py
tests/unit/ml_handlers/test_huggingface.py
tests/integration_tests/flows/test_http.py
tests/unit/ml_handlers/test_mlflow.py
tests/unit/ml_handlers/test_huggingface.py
tests/unit/ml_handlers/test_ludwig.py
tests/unit/ml_handlers/test_lightwood.py
tests/unit/test_predictor_params.py
tests/unit/test_project_structure.py
tests/unit/test_merlion_handler.py
tests/handler_tests/test_mysql_handler.py
tests/handler_tests/test_mariadb_handler.py
tests/handler_tests/test_postgres_handler.py
mindsdb/integrations/handlers/byom_handler/byom_handler.py
mindsdb/integrations/handlers/byom_handler/proc_wrapper.py
mindsdb/integrations/handlers/*
max-complexity = 18