rust-code-analysis 0.0.18

Tool to compute and export code metrics
Documentation
1
2
3
4
5
6
7
#!/bin/bash

set -eu

find examples -name '*.cs' -print0      | \
  xargs -0 -n 1000 tree-sitter parse -q | \
  tee >(cut -d' ' -f1 | sort > script/known-failures.txt)