-
Notifications
You must be signed in to change notification settings - Fork 51
/
pyproject.toml
102 lines (95 loc) · 2.54 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
95
96
97
98
99
100
101
102
[project]
requires-python = ">=3.11"
[tool.black]
line-length = 120
target-version = ['py311']
[tool.isort]
profile = "black"
[tool.ruff]
line-length = 120
exclude = [
".git",
"./plugin-server/node_modules/",
"./plugins/node_modules/",
"./env",
"./posthog/hogql/grammar",
]
[tool.ruff.lint]
ignore = [
"B017",
"B019",
"B904",
"B905",
"C901",
"E501",
"E722",
"E731",
"F403",
"F541",
"F601",
"UP007",
"UP032",
]
select = [
"B",
"C4",
"C9",
"DJ012",
"E",
"F",
"RUF005",
"RUF013",
"RUF015",
"RUF019",
"T2",
"TRY201",
"TRY400",
"UP",
"W",
]
[tool.ruff.lint.mccabe]
max-complexity = 10
[tool.ruff.lint.isort]
combine-as-imports = true
[tool.ruff.lint.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"]