This repository has been archived by the owner on Apr 29, 2024. It is now read-only.
forked from PostHog/posthog-foss
-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
94 lines (90 loc) · 2.42 KB
/
pyproject.toml
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
[tool.black]
line-length = 120
target-version = ['py310']
[tool.isort]
profile = "black"
[tool.ruff]
line-length = 120
exclude = [
".git",
"./plugin-server/node_modules/",
"./plugins/node_modules/",
"./env",
"./posthog/hogql/grammar",
]
ignore = [
"B006",
"B011",
"B017",
"B019",
"B024",
"B904",
"B905",
"C401",
"C408",
"C413",
"C414",
"C416",
"C417",
"C901",
"E501",
"E722",
"E731",
"F403",
"F405",
"F541",
"F601",
]
select = [
"B",
"C4",
"C9",
"E",
"F",
"T2",
"W",
]
[tool.ruff.mccabe]
max-complexity = 10
[tool.ruff.per-file-ignores]
"./posthog/queries/column_optimizer/column_optimizer.py" = ["F401"]
"./posthog/migrations/0027_move_elements_to_group.py" = ["T201"]
"./posthog/queries/cohort_query.py" = ["F401"]
"./posthog/client.py" = ["T201"]
"./posthog/async_migrations/test/test_migrations_not_required.py" = ["T201"]
"__init__.py" = ["F401"]
"./posthog/api/capture.py" = ["T201"]
"./ee/clickhouse/generate_local.py" = ["T201"]
"./posthog/management/commands/merge_distinct_emails.py" = ["T201"]
"./posthog/demo/matrix/matrix.py" = ["T201"]
"./posthog/migrations/0038_migrate_actions_to_precalculate_events.py" = ["T201"]
"./posthog/settings/overrides.py" = ["T201"]
"./bin/hobby-ci.py" = ["T201"]
"./posthog/management/commands/migrate_elementgroup.py" = ["T201"]
"./posthog/models/plugin.py" = ["T201"]
"./docker-compose-config.py" = ["T201"]
"./posthog/management/commands/backfill_persons_and_groups_on_events.py" = ["T201"]
"./posthog/management/commands/generate_demo_data.py" = ["T201"]
"./posthog/apps.py" = ["T201"]
"./posthog/management/commands/partition.py" = ["T201"]
"./posthog/management/commands/migrate_clickhouse.py" = ["T201"]
"./posthog/email.py" = ["T201"]
"./posthog/hogql/grammar/HogQLParser.py" = [
"F401",
"F841",
"E711",
]
"./posthog/celery.py" = ["T201"]
"./posthog/hogql/grammar/HogQLLexer.py" = ["F401"]
"./posthog/utils.py" = ["T201"]
"./posthog/management/commands/sync_feature_flags.py" = ["T201"]
"./cypress/wait.py" = ["T201"]
"./posthog/management/commands/notify_helm_install.py" = [
"T201",
"T203",
]
"./gunicorn.config.py" = ["T201"]
"./posthog/management/commands/run_async_migrations.py" = ["T201"]
"./posthog/management/commands/test_migrations_are_safe.py" = ["T201"]
"./posthog/management/commands/api_keys.py" = ["T201"]
"./posthog/demo/matrix/manager.py" = ["T201"]