File tree Expand file tree Collapse file tree 3 files changed +40
-19
lines changed Expand file tree Collapse file tree 3 files changed +40
-19
lines changed Original file line number Diff line number Diff line change 13
13
< tbody > < tr >
14
14
< th > Go</ th >
15
15
< th > 30</ th >
16
- < th > 9384 </ th >
17
- < th > 1462 </ th >
16
+ < th > 9395 </ th >
17
+ < th > 1463 </ th >
18
18
< th > 454</ th >
19
- < th > 7468 </ th >
20
- < th > 1520 </ th >
21
- < th > 403311 </ th >
22
- < th > 3958 </ th >
19
+ < th > 7478 </ th >
20
+ < th > 1524 </ th >
21
+ < th > 403651 </ th >
22
+ < th > 3963 </ th >
23
23
</ tr > < tr >
24
24
< td > processor/workers_test.go</ td >
25
25
< td > </ td >
63
63
</ tr > < tr >
64
64
< td > processor/processor.go</ td >
65
65
< td > </ td >
66
- < td > 644 </ td >
67
- < td > 137 </ td >
66
+ < td > 655 </ td >
67
+ < td > 138 </ td >
68
68
< td > 101</ td >
69
- < td > 406 </ td >
70
- < td > 87 </ td >
71
- < td > 18618 </ td >
72
- < td > 421 </ td >
69
+ < td > 416 </ td >
70
+ < td > 91 </ td >
71
+ < td > 18958 </ td >
72
+ < td > 427 </ td >
73
73
</ tr > < tr >
74
74
< td > processor/detector_test.go</ td >
75
75
< td > </ td >
324
324
< tfoot > < tr >
325
325
< th > Total</ th >
326
326
< th > 30</ th >
327
- < th > 9384 </ th >
328
- < th > 1462 </ th >
327
+ < th > 9395 </ th >
328
+ < th > 1463 </ th >
329
329
< th > 454</ th >
330
- < th > 7468 </ th >
331
- < th > 1520 </ th >
332
- < th > 403311 </ th >
333
- < th > 3958 </ th >
330
+ < th > 7478 </ th >
331
+ < th > 1524 </ th >
332
+ < th > 403651 </ th >
333
+ < th > 3963 </ th >
334
334
</ tr >
335
335
< tr >
336
- < th colspan ="9 "> Estimated Cost to Develop (organic) $223,079 < br > Estimated Schedule Effort (organic) 7.78 months< br > Estimated People Required (organic) 2.55< br > </ th >
336
+ < th colspan ="9 "> Estimated Cost to Develop (organic) $223,393 < br > Estimated Schedule Effort (organic) 7.78 months< br > Estimated People Required (organic) 2.55< br > </ th >
337
337
</ tr > </ tfoot >
338
338
</ table > </ body > </ html >
Original file line number Diff line number Diff line change 7
7
"fmt"
8
8
"os"
9
9
"path/filepath"
10
+ "regexp"
10
11
"runtime"
11
12
"runtime/debug"
12
13
"sort"
@@ -596,6 +597,16 @@ func Process() {
596
597
fileWalker .IncludeHidden = true
597
598
fileWalker .ExcludeDirectory = PathDenyList
598
599
600
+ for _ , exclude := range Exclude {
601
+ regexpResult , err := regexp .Compile (exclude )
602
+ if err == nil {
603
+ fileWalker .ExcludeFilenameRegex = append (fileWalker .ExcludeFilenameRegex , regexpResult )
604
+ fileWalker .ExcludeDirectoryRegex = append (fileWalker .ExcludeDirectoryRegex , regexpResult )
605
+ } else {
606
+ printError (err .Error ())
607
+ }
608
+ }
609
+
599
610
go func () {
600
611
err := fileWalker .Start ()
601
612
if err != nil {
Original file line number Diff line number Diff line change @@ -885,6 +885,16 @@ else
885
885
echo -e " ${GREEN} PASSED exclude-ext check"
886
886
fi
887
887
888
+ # Issue 457
889
+ if ./scc -M " .*" | grep -q " 0.000 megabytes" ; then
890
+ echo -e " ${GREEN} PASSED issue 457"
891
+ else
892
+ echo -e " ${RED} ======================================================="
893
+ echo -e " FAILED issue 457"
894
+ echo -e " =======================================================${NC} "
895
+ exit
896
+ fi
897
+
888
898
# Try out specific languages
889
899
for i in ' Bosque ' ' Flow9 ' ' Bitbucket Pipeline ' ' Docker ignore ' ' Q# ' ' Futhark ' ' Alloy ' ' Wren ' ' Monkey C ' ' Alchemist ' ' Luna ' ' ignore ' ' XML Schema ' ' Web Services' ' Go ' ' Java ' ' Boo ' ' License ' ' BASH ' ' C Shell ' ' Korn Shell ' ' Makefile ' ' Shell ' ' Zsh ' ' Rakefile ' ' Gemfile ' ' Dockerfile ' ' Yarn ' ' Sieve ' ' F# ' ' Elm ' ' Terraform ' ' Clojure ' ' C# ' ' LLVM IR ' ' HAML ' ' FXML ' ' DM ' ' Nushell ' ' Racket ' ' DOT ' ' YAML ' ' Teal ' ' FSL ' ' INI ' ' Hare ' ' Templ ' ' Cuda ' ' GraphQL ' ' Bicep ' ' Pkl ' ' TypeSpec ' ' LALRPOP ' ' Snakemake ' ' OpenQASM ' ' Typst ' ' ZoKrates ' ' Chapel ' ' Slang ' ' Circom '
890
900
do
You can’t perform that action at this time.
0 commit comments