* fix: ignoring url checker files * fix: url checker * fix: auto fmt and cleanup * fix: moving the bash scripts and known files into the scripts repo * fix: removed all url_results and made it be all in memory * fix: fixed the newline issue * fix: url checking as a step to the static analysis * fix: removed old code * chore: writing documentation on our static checker pattern * fix: updating the docs more to be clearer * fix: copy and paste without understanding requirements of ci cd dependencies? do i need all of these? * fix: updating * fix: I thought this got in? * Update CONTRIBUTING.md Co-authored-by: Jace Browning <jacebrowning@gmail.com> --------- Co-authored-by: Jace Browning <jacebrowning@gmail.com>
6 lines
170 B
Bash
Executable File
6 lines
170 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
npm run circular-deps | sed '$d' > /tmp/circular-deps.txt
|
|
diff --ignore-blank-lines -w /tmp/circular-deps.txt ./scripts/known/circular.txt
|