-
Notifications
You must be signed in to change notification settings - Fork 509
Expand file tree
/
Copy pathpoly.toml
More file actions
531 lines (520 loc) · 11.2 KB
/
Copy pathpoly.toml
File metadata and controls
531 lines (520 loc) · 11.2 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
[discovery]
exclude = [
"**/*.freezed.dart",
"**/*.g.dart",
"**/*.jinja",
"**/*.lock",
"**/Cargo.lock",
"**/go.sum",
"**/package-lock.json",
"**/pnpm-lock.yaml",
"**/uv.lock",
".alef/**",
"artifacts/**",
"dist/**",
"docs/assets/**",
"docs/snippets/**",
"fixtures/**",
"node_modules/**",
"readme_templates/**",
"target/**",
"templates/readme/**",
"test_documents/**",
"vendor/**",
"**/vendored/**",
"**/stopwords/**",
"**/testdata/**",
"e2e/**",
"**/*.diff",
"**/*.patch",
"**/_generated/**",
"**/coverage/**",
"**/pkg/**",
"**/.next/**",
"**/*.min.js",
"**/frb_generated.rs",
]
[lint.markdown.rumdl]
disable = ["MD012", "MD013", "MD024", "MD033", "MD036", "MD041", "MD046", "MD051", "MD076"]
[fmt.markdown.rumdl]
disable = ["MD012", "MD013", "MD024", "MD033", "MD036", "MD041", "MD046", "MD051", "MD076"]
[lint.python.ruff]
select = ["ALL"]
ignore = [
"ANN401",
"ASYNC109",
"ASYNC110",
"BLE001",
"COM812",
"D100",
"D104",
"D107",
"D205",
"E501",
"EM",
"FBT",
"FIX",
"ISC001",
"PD011",
"PGH003",
"PLR2004",
"PLW0603",
"S104",
"S110",
"S603",
"TD",
"TRY",
]
mccabe_max_complexity = 15
pydocstyle_convention = "google"
pylint_max_args = 10
pylint_max_branches = 15
pylint_max_returns = 10
[lint.php.mago]
select = ["correctness", "security"]
ignore = ["strict-assertions", "use-specific-assertions", "no-redundant-variable", "sensitive-parameter"]
php_version = "8.2"
# Spell-checker allowlist. Data/corpus trees (testdata tokenizer vocab, stopword
# lists, vendored benchmark ground-truth) are handled by [discovery] exclude
# above; these entries whitelist valid identifiers/terms in real source so autofix
# never mangles them (the original bug: the `flate2` crate got "corrected" to `flat2`).
[lint.typos.extend_words]
# flate2 crate + PDF FlateDecode filter (THE ORIGINAL BUG: flate -> flat)
flate = "flate"
# macOS wheel-vendoring tool (publish.yaml)
delocate = "delocate"
# candle-ocr ML tensor/API terms
thw = "thw" # image_grid_thw / grid_thw tensor dim
arange = "arange" # candle Tensor::arange (covers "Arange")
mmaped = "mmaped" # candle from_mmaped_safetensors
# binding / keyword-algorithm split tokens
ser = "ser" # Jackson databind.ser.std (Java/Kotlin bindings)
ake = "ake" # yAKE keyword algorithm (go binding)
algoritmos = "algoritmos" # Spanish test string (keywords_integration.rs)
# Project / product / tool names
kreuzberg = "kreuzberg"
zensical = "zensical"
tesseract = "tesseract"
onnx = "onnx"
surrealdb = "surrealdb"
docling = "docling"
markitdown = "markitdown"
pymupdf = "pymupdf"
openwebui = "openwebui"
webui = "webui"
mkdocs = "mkdocs"
mkdocstrings = "mkdocstrings"
rumdl = "rumdl"
# Document-format domain terms
opf = "opf" # EPUB Open Packaging Format
hocr = "hocr"
odf = "odf"
multline = "multline" # LaTeX environment
headerr = "headerr" # RTF control word
pard = "pard" # RTF control word
edn = "edn" # DOC field name
siz = "siz" # JPEG2000 SIZ marker
# ISO-639 / OCR language codes
inh = "inh"
bre = "bre"
yor = "yor"
# Upstream (Tesseract / PDFium / PaddleOCR) API/constant spellings
extention = "extention"
portait = "portait"
fith = "fith"
threed = "threed"
chlidren = "chlidren"
formated = "formated"
specifing = "specifing"
similarily = "similarily"
execpt = "execpt"
faiure = "faiure"
substract = "substract"
charater = "charater"
cliper = "cliper"
splitted = "splitted"
unparseable = "unparseable"
relatie = "relatie" # Dutch "relatie-id" test placeholder
traineddata = "traineddata"
# Language codes / foreign-language test strings in real source
tha = "tha" # Thai ISO-639 code (OCR language lists)
ist = "ist" # German "ist" in language-detection samples
internacional = "internacional" # es/pt language-detection sample
utiliza = "utiliza" # Spanish keyword-extraction test string
# Short domain fragments flagged in real source
caf = "caf"
hom = "hom" # LaTeX \hom operator
ths = "ths" # DOCX 240ths measurement unit
ment = "ment" # semantic token-reduction fragment
mis = "mis"
helo = "helo"
ove = "ove" # OVE fragment in pdf_text_merging test
tre = "tre" # Tre fragment (pdfium-render)
thr = "thr" # thr fragment (benchmark-harness aggregate)
# Foreign-language words in test strings / translation guide
programa = "programa"
cursos = "cursos"
excepcional = "excepcional"
ein = "ein" # German "ein"
legt = "legt" # German "legt" (translation.md)
[lint.typos.extend_identifiers]
PyMuPDF = "PyMuPDF"
MarkItDown = "MarkItDown"
SurrealDB = "SurrealDB"
PDFium = "PDFium"
WebUI = "WebUI"
traineddata = "traineddata"
[per-file-ignores]
# text_repair.rs contains intentionally broken/split words as test fixtures
# (hyphenation-rejoin cases) — ignore typos there rather than globally
# allowlisting real-typo-looking fragments.
"**/text_repair.rs" = ["typo"]
# alef/napi-generated JS loader + wrapper — unused-var nits are generator output,
# not hand-editable here (fix belongs in alef's napi backend).
"crates/xberg-node/index.js" = ["no-unused-vars"]
"crates/xberg-node/format-metadata-wrapper.js" = ["no-unused-vars"]
# Dockerfiles: DL3006 fires only on unpinnable `FROM scratch` (false positive);
# DL3059 (consecutive RUN) is stylistic — multi-stage RUNs kept split on purpose.
# (The dockerfile engine ignores [lint.*] config, so suppress by path here.)
"docker/**" = ["DL3006", "DL3059"]
"**/api.py" = ["F401", "I001", "TC006", "UP035"]
"**/*.pyi" = ["A002", "F401", "I001", "PYI033", "TC006", "UP035"]
"**/options.py" = ["F401", "I001", "RUF100"]
"**/__init__.py" = ["I001"]
"**/tests/**" = [
"ANN",
"D103",
"PLR2004",
"PLR0915",
"PLR0913",
"S101",
"S105",
"S106",
"S108",
"S310",
"S311",
"PT011",
"PT012",
"PERF401",
"PTH123",
"T201",
"TC001",
"TC002",
"TC003",
"INP001",
"no-unused-vars",
"no-literal-password",
"no-unescaped-output",
"RUF100",
"F401",
"F811",
"I001",
"PT018",
"ARG001",
"ARG002",
"D403",
"E713",
"UP035",
"UP012",
"RUF015",
"F541",
"EXE001",
"A001",
"N801",
]
"**/e2e/**" = [
"ANN",
"D103",
"PLR2004",
"PLR0915",
"PLR0913",
"S101",
"S105",
"S106",
"S108",
"S310",
"S311",
"PT011",
"PT012",
"PERF401",
"PTH123",
"T201",
"TC001",
"TC002",
"TC003",
"INP001",
"no-unused-vars",
"no-literal-password",
"no-unescaped-output",
"RUF100",
"F401",
"F811",
"I001",
"PT018",
"ARG001",
"ARG002",
"D403",
"E713",
"UP035",
"UP012",
"RUF015",
"F541",
"EXE001",
"A001",
"N801",
]
"**/test_apps/**" = [
"ANN",
"D103",
"PLR2004",
"PLR0915",
"PLR0913",
"S101",
"S105",
"S106",
"S108",
"S310",
"S311",
"PT011",
"PT012",
"PERF401",
"PTH123",
"T201",
"TC001",
"TC002",
"TC003",
"INP001",
"no-unused-vars",
"no-literal-password",
"no-unescaped-output",
"RUF100",
"F401",
"F811",
"I001",
"PT018",
"ARG001",
"ARG002",
"D403",
"E713",
"UP035",
"UP012",
"RUF015",
"F541",
"EXE001",
"A001",
"N801",
]
"cli-proxy/pypi/**/*.py" = ["ANN001", "ANN202", "S310", "T201"]
"e2e/**/*.py" = ["A001", "N801"]
"packages/python/build.py" = ["INP001"]
"packages/python/xberg/options.py" = ["I001"]
"scripts/**/*.py" = [
"B023",
"C901",
"D101",
"D102",
"D103",
"D415",
"E702",
"ERA001",
"PERF203",
"PERF401",
"PLC0415",
"PLR0912",
"PLR0915",
"PLW2901",
"PT018",
"PTH108",
"PTH123",
"S101",
"S108",
"S311",
"S607",
"SIM105",
"SIM115",
"T201",
]
"tools/benchmark-harness/python_baselines/*.py" = [
"ANN001",
"ANN201",
"ANN202",
"ARG001",
"BLE001",
"C901",
"D103",
"G004",
"INP001",
"PERF401",
"PLC0415",
"PLR0911",
"PLR0912",
"PLR0915",
"PLW2901",
"PTH123",
"S607",
"T201",
]
"tools/benchmark-harness/scripts/*.php" = ["no-unescaped-output"]
"tools/benchmark-harness/scripts/*.py" = [
"ANN001",
"ANN201",
"ANN202",
"ARG001",
"BLE001",
"C901",
"D103",
"E741",
"EXE001",
"EXE002",
"F841",
"INP001",
"N818",
"PERF203",
"PERF401",
"PIE810",
"PLC0206",
"PLC0415",
"PLR0911",
"PLR0912",
"PLR0915",
"PLR1714",
"PLW1510",
"PLW2901",
"PTH110",
"PTH112",
"PTH118",
"PTH119",
"PTH122",
"PTH123",
"RET504",
"S314",
"S607",
"SIM108",
"SIM115",
"T201",
]
"tools/generate_test_fixtures/**/*.py" = [
"D301",
"ERA001",
"PERF401",
"PLC0415",
"PT001",
"S101",
"SIM117",
"T201",
"TC003",
]
"tools/perf/*.py" = ["D103", "T201"]
[hooks]
stages = ["pre-commit"]
[hooks.builtin]
polylint = { exclude = [
"**/*.freezed.dart",
"**/*.g.dart",
"**/*.jinja",
"**/*.lock",
"**/Cargo.lock",
"**/go.sum",
"**/package-lock.json",
"**/pnpm-lock.yaml",
"**/uv.lock",
".alef/**",
"artifacts/**",
"dist/**",
"docs/assets/**",
"docs/snippets/**",
"fixtures/**",
"node_modules/**",
"readme_templates/**",
"target/**",
"templates/readme/**",
"test_documents/**",
"vendor/**",
"**/vendored/**",
"**/stopwords/**",
"**/testdata/**",
"e2e/**",
"**/*.diff",
"**/*.patch",
"**/_generated/**",
"**/coverage/**",
"**/pkg/**",
"**/.next/**",
"**/*.min.js",
"**/frb_generated.rs",
] }
polyfmt = { exclude = [
"**/*.freezed.dart",
"**/*.g.dart",
"**/*.jinja",
"**/*.lock",
"**/Cargo.lock",
"**/go.sum",
"**/package-lock.json",
"**/pnpm-lock.yaml",
"**/uv.lock",
".alef/**",
"artifacts/**",
"dist/**",
"docs/assets/**",
"docs/snippets/**",
"fixtures/**",
"node_modules/**",
"readme_templates/**",
"target/**",
"templates/readme/**",
"test_documents/**",
"vendor/**",
"**/vendored/**",
"**/stopwords/**",
"**/testdata/**",
"e2e/**",
"**/*.diff",
"**/*.patch",
"**/_generated/**",
"**/coverage/**",
"**/pkg/**",
"**/.next/**",
"**/*.min.js",
"**/frb_generated.rs",
] }
file_safety = { exclude = [
"**/*.freezed.dart",
"**/*.g.dart",
"**/*.jinja",
"**/*.lock",
"**/Cargo.lock",
"**/go.sum",
"**/package-lock.json",
"**/pnpm-lock.yaml",
"**/uv.lock",
".alef/**",
"artifacts/**",
"dist/**",
"docs/assets/**",
"docs/snippets/**",
"fixtures/**",
"node_modules/**",
"readme_templates/**",
"target/**",
"templates/readme/**",
"test_documents/**",
"vendor/**",
"**/vendored/**",
"**/stopwords/**",
"**/testdata/**",
"e2e/**",
"**/*.diff",
"**/*.patch",
"**/_generated/**",
"**/coverage/**",
"**/pkg/**",
"**/.next/**",
"**/*.min.js",
"**/frb_generated.rs",
] }
cargo = true
commit = { stages = ["commit-msg"] }
[hooks.pre-commit.commands.pyrefly]
run = "pyrefly check packages/python"
files = "packages/python/**/*.py"