more codespell errors (#33223)

more spell
pull/30679/head
Maxime Desroches 9 months ago committed by GitHub
parent ba7a60c5a2
commit 184519834c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      .github/workflows/ci_weekly_report.yaml
  2. 2
      pyproject.toml

@ -58,14 +58,14 @@ jobs:
const jobName = job.name.split(" / ")[2]; const jobName = job.name.split(" / ")[2];
const runRegex = /\((.*?)\)/; const runRegex = /\((.*?)\)/;
const run = job.name.match(runRegex)[1]; const run = job.name.match(runRegex)[1];
report[jobName] = report[jobName] || { successes: [], failures: [], cancelled: [] }; report[jobName] = report[jobName] || { successes: [], failures: [], canceled: [] };
switch (job.conclusion) { switch (job.conclusion) {
case "success": case "success":
report[jobName].successes.push({ "run_number": run, "link": job.html_url}); break; report[jobName].successes.push({ "run_number": run, "link": job.html_url}); break;
case "failure": case "failure":
report[jobName].failures.push({ "run_number": run, "link": job.html_url }); break; report[jobName].failures.push({ "run_number": run, "link": job.html_url }); break;
case "cancelled": case "canceled":
report[jobName].cancelled.push({ "run_number": run, "link": job.html_url }); break; report[jobName].canceled.push({ "run_number": run, "link": job.html_url }); break;
} }
}); });
return JSON.stringify({"jobs": report}); return JSON.stringify({"jobs": report});

@ -167,7 +167,7 @@ testpaths = [
[tool.codespell] [tool.codespell]
quiet-level = 3 quiet-level = 3
# if you've got a short variable name that's getting flagged, add it here # if you've got a short variable name that's getting flagged, add it here
ignore-words-list = "bu,ro,te,ue,alo,hda,ois,nam,nams,ned,som,parm,setts,inout,warmup,bumb,nd,sie,preints,whit,indexIn,ws,uint,grey,deque,stdio,amin,BA,LITE,atEnd,UIs,errorString,arange,FocusIn,od,tim,relA,hist,copyable" ignore-words-list = "bu,ro,te,ue,alo,hda,ois,nam,nams,ned,som,parm,setts,inout,warmup,bumb,nd,sie,preints,whit,indexIn,ws,uint,grey,deque,stdio,amin,BA,LITE,atEnd,UIs,errorString,arange,FocusIn,od,tim,relA,hist,copyable,jupyter,thead"
builtin = "clear,rare,informal,code,names,en-GB_to_en-US" builtin = "clear,rare,informal,code,names,en-GB_to_en-US"
skip = "./third_party/*, ./tinygrad/*, ./tinygrad_repo/*, ./msgq/*, ./panda/*, ./opendbc/*, ./opendbc_repo/*, ./rednose/*, ./rednose_repo/*, ./teleoprtc/*, ./teleoprtc_repo/*, ./selfdrive/ui/translations/*.ts, uv.lock, *.onnx, ./cereal/gen/*, */c_generated_code/*" skip = "./third_party/*, ./tinygrad/*, ./tinygrad_repo/*, ./msgq/*, ./panda/*, ./opendbc/*, ./opendbc_repo/*, ./rednose/*, ./rednose_repo/*, ./teleoprtc/*, ./teleoprtc_repo/*, ./selfdrive/ui/translations/*.ts, uv.lock, *.onnx, ./cereal/gen/*, */c_generated_code/*"

Loading…
Cancel
Save