summaryrefslogtreecommitdiffstats
path: root/comm/pyproject.toml
blob: 6d5fd946954c68b07342fcd33206f13f40e4095a (plain)
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
[tool.ruff]
line-length = 99
# See https://beta.ruff.rs/docs/rules/ for a full list of rules.
select = [
  "E", "W",    # pycodestyle
  "F",         # pyflakes
  "I",         # isort
]
ignore = [
  # These should be triaged and either fixed or moved to the list below.
  "W605",

  # These are intentionally ignored (not necessarily for good reason).
  "E741",

  # These are handled by black.
  "E1", "E4", "E5", "W2", "W5"
]
exclude = [
  "python/l10n/tb_fluent_migrations"
]
builtins = ["gdb"]

[tool.ruff.per-file-ignores]

[tool.ruff.isort]
known-first-party = [
  "mach",
  "mozboot",
  "mozbuild",
  "mozpack",
  "mozharness",
  "mozlint",
  "mozperftest",
  "mozrelease",
  "mozterm",
  "mozversioncontrol",
  "mozxchannel",
  "tbxchannel",
  "gecko_taskgraph",
  "buildconfig",
]
known-local-folder = [
  "rocboot",
  "rocbuild",
  "thirdroc",
  "comm_taskgraph",
]