From cbdb9da983abdbc1b15096194c71230ef81c78ef Mon Sep 17 00:00:00 2001 From: Aidan Plummer Date: Fri, 13 Mar 2026 00:03:17 +0000 Subject: [PATCH] Integrated Flow static type checker --- .flowconfig | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .flowconfig diff --git a/.flowconfig b/.flowconfig new file mode 100644 index 0000000000..fe7801ea1a --- /dev/null +++ b/.flowconfig @@ -0,0 +1,22 @@ +[ignore] +.*/node_modules/.* +.*/build/.* +.*/test/.* +.*/vendor/.* +.*/public/.* +.*/logs/.* + +[include] +./src/ + +[libs] + +[lints] + +[options] +exact_by_default=false +module.system=node +module.use_strict=true +all=false + +[strict] \ No newline at end of file