-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.flake8
More file actions
57 lines (57 loc) · 2.83 KB
/
Copy path.flake8
File metadata and controls
57 lines (57 loc) · 2.83 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
[flake8]
max-line-length = 120
extend-ignore =
E203,
W503,
E402
per-file-ignores =
# Attack corpus contains intentionally long adversarial prompt strings
tests/adversarial/attack_corpus.py: E501
# XML/HTML test fixtures with long Android UI hierarchy or HTML lines
tests/test_phone_eye.py: E501
tests/test_phone_navigation_telemetry.py: E501
tests/test_playwriter_lane_runner.py: E501
# Single-line JSON gate_report log fixture (474 chars) must stay one literal
# line so it mirrors real per-line log parsing and stays copy-pasteable JSON
tests/test_geoseal_coding_training_system.py: E501
# SFT/corpus generator family: long literal prompt and content strings
# must stay unwrapped so generated training data is byte-reproducible
scripts/generate_*.py: E501
scripts/system/generate_*.py: E501
scripts/training/generate_*.py: E501
# Synthetic agentic trajectory corpus: literal diff/command/thought strings
# feed seeded (random.seed(42)) training-data JSONL and must stay byte-reproducible
scripts/training/build_agentic_seed.py: E501
scripts/gen_ch01_hq.py: E501
scripts/gen_ch01_panels.py: E501
scripts/gen_full_book_panels.py: E501
scripts/build_ch01_prompts_v4.py: E501
scripts/build_coding_system_full_sft.py: E501
scripts/build_ca_*.py: E501
scripts/build_stage6_*.py: E501
scripts/build_external_poly_coding_sft.py: E501
scripts/augment_curriculum_sft.py: E501
scripts/merge_text_layer_v4.py: E501
scripts/update_hf_model_cards.py: E501
# Adversarial benchmark corpus: intentionally long attack prompt literals
scripts/patent_benchmark.py: E501
# deterministic_task_plan() repair-command corpus: literal shell/python -c
# payloads (nested quoting, up to 1142 chars) must stay byte-exact for sandbox replay
scripts/benchmark/scbe_governance_core.py: E501
# Generated self-contained benchmark kernels embed source payloads on one line.
scripts/kaggle/encoder_bench/encoder_bench_kernel.py: E501
scripts/kaggle_auto/rubix_bench_sc/rubix_bench_selfcontained.py: E501
# Generated-document templates (LaTeX paper prose, product packet prose,
# model-card JSONL examples, Colab cells with single-token URLs): lines live
# inside triple-quoted templates and cannot wrap without changing output
scripts/arxiv_synthesize_paper.py: E501
scripts/package_products.py: E501
scripts/merge_and_upload.py: E501
scripts/train_art_lora_colab.py: E501
# Outreach campaign content: email-body paragraphs live inside triple-quoted
# f-string templates (plus citation URLs) and cannot wrap without changing
# the generated email text
scripts/outreach/cold_outreach_pipeline.py: E501
# Test files with sys.path manipulation before imports
tests/conftest.py: E402
src/symphonic_cipher/__init__.py: E402