scanoss 0.2.26 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/reuse.yml +15 -0
- package/.github/workflows/scanoss.yml +24 -0
- package/.gitignore +0 -1
- package/.idea/.gitignore +5 -0
- package/.idea/codeStyles/Project.xml +61 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/scanoss.js.iml +12 -0
- package/.idea/vcs.xml +6 -0
- package/.idea/workspace.xml +366 -0
- package/.nyc_output/a25d3ac4-ee71-4c5e-926e-3a17714555cd.json +1 -0
- package/.nyc_output/processinfo/a25d3ac4-ee71-4c5e-926e-3a17714555cd.json +1 -0
- package/.nyc_output/processinfo/index.json +1 -0
- package/.reuse/dep5 +16 -0
- package/LICENSES/CC0-1.0.txt +121 -0
- package/LICENSES/MIT.txt +9 -0
- package/README.md +9 -0
- package/build/main/bin/cli-bin.js +5 -3
- package/build/main/commands/dep.js +1 -2
- package/build/main/commands/fingerprint.js +20 -12
- package/build/main/commands/helpers.js +1 -2
- package/build/main/commands/scan.js +7 -2
- package/build/main/index.js +1 -2
- package/build/main/lib/dependencies/DependencyScanner.d.ts +1 -1
- package/build/main/lib/dependencies/DependencyScanner.js +23 -12
- package/build/main/lib/dependencies/DependencyScannerCfg.js +1 -2
- package/build/main/lib/dependencies/DependencyTypes.js +0 -1
- package/build/main/lib/dependencies/LocalDependency/DependencyTypes.js +0 -1
- package/build/main/lib/dependencies/LocalDependency/LocalDependency.js +3 -2
- package/build/main/lib/dependencies/LocalDependency/parsers/golangParser.d.ts +1 -0
- package/build/main/lib/dependencies/LocalDependency/parsers/golangParser.js +50 -16
- package/build/main/lib/dependencies/LocalDependency/parsers/mavenParser.js +130 -15
- package/build/main/lib/dependencies/LocalDependency/parsers/npmParser.d.ts +10 -0
- package/build/main/lib/dependencies/LocalDependency/parsers/npmParser.js +146 -10
- package/build/main/lib/dependencies/LocalDependency/parsers/pyParser.js +1 -2
- package/build/main/lib/dependencies/LocalDependency/parsers/rubyParser.js +1 -2
- package/build/main/lib/dependencies/LocalDependency/parsers/utils.js +1 -2
- package/build/main/lib/filters/defaultFilter.js +1 -2
- package/build/main/lib/filters/filtering.js +1 -2
- package/build/main/lib/grpc/GrpcDependencyService.js +1 -2
- package/build/main/lib/grpc/scanoss/api/components/v2/scanoss-components_grpc_pb.d.ts +62 -0
- package/build/main/lib/grpc/scanoss/api/components/v2/scanoss-components_grpc_pb.js +128 -0
- package/build/main/lib/grpc/scanoss/api/components/v2/scanoss-components_pb.d.ts +1 -0
- package/build/main/lib/grpc/scanoss/api/components/v2/scanoss-components_pb.js +1403 -0
- package/build/main/lib/scanner/Dispatcher/DispatchableItem.d.ts +14 -5
- package/build/main/lib/scanner/Dispatcher/DispatchableItem.js +30 -10
- package/build/main/lib/scanner/Dispatcher/Dispatcher.d.ts +2 -2
- package/build/main/lib/scanner/Dispatcher/Dispatcher.js +10 -15
- package/build/main/lib/scanner/Dispatcher/DispatcherResponse.js +1 -2
- package/build/main/lib/scanner/Dispatcher/GlobalControllerAborter.js +1 -2
- package/build/main/lib/scanner/Scannable/ScannableItem.js +1 -2
- package/build/main/lib/scanner/Scanner.js +13 -9
- package/build/main/lib/scanner/ScannerCfg.js +2 -3
- package/build/main/lib/scanner/ScannerQueue.d.ts +3 -0
- package/build/main/lib/scanner/ScannerQueue.js +8 -0
- package/build/main/lib/scanner/ScannerTypes.d.ts +9 -2
- package/build/main/lib/scanner/ScannerTypes.js +8 -3
- package/build/main/lib/scanner/WfpProvider/FingerprintPackage.d.ts +9 -0
- package/build/main/lib/scanner/WfpProvider/FingerprintPackage.js +31 -0
- package/build/main/lib/scanner/WfpProvider/WfpCalculator/WfpCalculator.js +178 -21
- package/build/main/lib/scanner/WfpProvider/WfpCalculator/Winnower.d.ts +3 -0
- package/build/main/lib/scanner/WfpProvider/WfpCalculator/Winnower.js +211 -0
- package/build/main/lib/scanner/WfpProvider/WfpProvider.d.ts +2 -2
- package/build/main/lib/scanner/WfpProvider/WfpProvider.js +6 -7
- package/build/main/lib/scanner/WfpProvider/WfpSplitter/WfpSplitter.js +1 -2
- package/build/main/lib/tree/File.js +1 -2
- package/build/main/lib/tree/Folder.js +1 -2
- package/build/main/lib/tree/Node.js +1 -2
- package/build/main/lib/tree/Tree.js +1 -2
- package/build/module/bin/cli-bin.js +5 -2
- package/build/module/commands/fingerprint.js +25 -16
- package/build/module/commands/scan.js +8 -2
- package/build/module/lib/dependencies/DependencyScanner.d.ts +1 -1
- package/build/module/lib/dependencies/DependencyScanner.js +23 -11
- package/build/module/lib/dependencies/LocalDependency/LocalDependency.js +5 -3
- package/build/module/lib/dependencies/LocalDependency/parsers/golangParser.d.ts +1 -0
- package/build/module/lib/dependencies/LocalDependency/parsers/golangParser.js +47 -14
- package/build/module/lib/dependencies/LocalDependency/parsers/mavenParser.js +130 -14
- package/build/module/lib/dependencies/LocalDependency/parsers/npmParser.d.ts +10 -0
- package/build/module/lib/dependencies/LocalDependency/parsers/npmParser.js +140 -8
- package/build/module/lib/grpc/scanoss/api/components/v2/scanoss-components_grpc_pb.d.ts +62 -0
- package/build/module/lib/grpc/scanoss/api/components/v2/scanoss-components_grpc_pb.js +128 -0
- package/build/module/lib/grpc/scanoss/api/components/v2/scanoss-components_pb.d.ts +1 -0
- package/build/module/lib/grpc/scanoss/api/components/v2/scanoss-components_pb.js +1403 -0
- package/build/module/lib/scanner/Dispatcher/DispatchableItem.d.ts +14 -5
- package/build/module/lib/scanner/Dispatcher/DispatchableItem.js +32 -10
- package/build/module/lib/scanner/Dispatcher/Dispatcher.d.ts +2 -2
- package/build/module/lib/scanner/Dispatcher/Dispatcher.js +10 -14
- package/build/module/lib/scanner/Scanner.js +12 -8
- package/build/module/lib/scanner/ScannerCfg.js +2 -2
- package/build/module/lib/scanner/ScannerQueue.d.ts +3 -0
- package/build/module/lib/scanner/ScannerQueue.js +4 -0
- package/build/module/lib/scanner/ScannerTypes.d.ts +9 -2
- package/build/module/lib/scanner/ScannerTypes.js +7 -1
- package/build/module/lib/scanner/WfpProvider/FingerprintPackage.d.ts +9 -0
- package/build/module/lib/scanner/WfpProvider/FingerprintPackage.js +30 -0
- package/build/module/lib/scanner/WfpProvider/WfpCalculator/WfpCalculator.js +178 -20
- package/build/module/lib/scanner/WfpProvider/WfpCalculator/Winnower.d.ts +3 -0
- package/build/module/lib/scanner/WfpProvider/WfpCalculator/Winnower.js +211 -0
- package/build/module/lib/scanner/WfpProvider/WfpProvider.d.ts +2 -2
- package/build/module/lib/scanner/WfpProvider/WfpProvider.js +6 -6
- package/build/tsconfig.module.tsbuildinfo +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -17
- package/src/bin/cli-bin.ts +4 -1
- package/src/commands/fingerprint.ts +26 -17
- package/src/commands/scan.ts +16 -3
- package/src/lib/dependencies/DependencyScanner.ts +20 -13
- package/src/lib/dependencies/LocalDependency/LocalDependency.ts +8 -2
- package/src/lib/dependencies/LocalDependency/parsers/golangParser.ts +67 -15
- package/src/lib/dependencies/LocalDependency/parsers/mavenParser.ts +143 -16
- package/src/lib/dependencies/LocalDependency/parsers/npmParser.ts +182 -7
- package/src/lib/scanner/Dispatcher/DispatchableItem.ts +45 -11
- package/src/lib/scanner/Dispatcher/Dispatcher.ts +11 -14
- package/src/lib/scanner/Scanner.ts +17 -13
- package/src/lib/scanner/ScannerCfg.ts +2 -1
- package/src/lib/scanner/ScannerTypes.ts +10 -2
- package/src/lib/scanner/WfpProvider/{FingerprintPacket.ts → FingerprintPackage.ts} +4 -14
- package/src/lib/scanner/WfpProvider/WfpCalculator/WfpCalculator.ts +177 -20
- package/src/lib/scanner/WfpProvider/WfpProvider.ts +5 -5
- package/tests/WfpCalculator.spec.ts +103 -0
- package/tests/data/dependencies/Gemfile/1/Gemfile +6 -0
- package/tests/data/dependencies/Gemfile/1/Gemfile~ +0 -0
- package/tests/data/dependencies/Gemfile/2/Gemfile +3 -0
- package/tests/data/dependencies/Gemfile/2/Gemfile~ +6 -0
- package/tests/data/dependencies/Gemfile/3/Gemfile +7 -0
- package/tests/data/dependencies/Gemfile/3/Gemfile~ +6 -0
- package/tests/data/dependencies/Gemfile/4/Gemfile +31 -0
- package/tests/data/dependencies/Gemfile/4/Gemfile~ +7 -0
- package/tests/data/dependencies/Gemfile.lock/1/Gemfile.lock +180 -0
- package/tests/data/dependencies/Gemfile.lock/2/Gemfile.lock +60 -0
- package/tests/data/dependencies/Gemfile.lock/2/Gemfile.lock~ +0 -0
- package/tests/data/dependencies/go.sum/1/go.sum +119 -0
- package/tests/data/dependencies/go.sum/depJSON.sh +23 -0
- package/tests/data/dependencies/package-lock/1/package-lock.json +715 -0
- package/tests/data/dependencies/package-lock/2/package-lock.json +32069 -0
- package/tests/data/dependencies/package-lock/3/package-lock.json +9013 -0
- package/tests/data/dependencies/pom.xml/1/pom.xml +162 -0
- package/tests/data/dependencies/yarn-lock/generate_expected_output.sh +4 -0
- package/tests/data/dependencies/yarn-lock/v1/yarn.lock +50 -0
- package/tests/data/dependencies/yarn-lock/v1/yarn.lock-expected +13 -0
- package/tests/data/dependencies/yarn-lock/v1-complex/yarn.lock +27 -0
- package/tests/data/dependencies/yarn-lock/v1-complex/yarn.lock-expected +8 -0
- package/tests/data/dependencies/yarn-lock/v1-complex2/yarn.lock +220 -0
- package/tests/data/dependencies/yarn-lock/v2/yarn.lock +31 -0
- package/tests/data/dependencies/yarn-lock/v2/yarn.lock-expected +57 -0
- package/tests/data/dependencies/yarn-lock/v2-local/yarn.lock +11 -0
- package/tests/data/dependencies/yarn-lock/v2-local/yarn.lock-expected +27204 -0
- package/tests/data/scanner/file1.c +41 -0
- package/tests/data/scanner/file2.go +87 -0
- package/tests/dependencies/golangParser.goModParser.specs.ts +146 -0
- package/tests/dependencies/npmParser.spec.ts +133 -0
- package/tsconfig.json +4 -3
- package/yarn.lock +4596 -5321
- package/examples/defaultFilter.json +0 -203
- package/package-lock.json +0 -18588
- package/src/lib/scanner/Winnower/WinnowerExtractor.ts +0 -37
|
@@ -1,203 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Default",
|
|
3
|
-
"type": "BANNED",
|
|
4
|
-
"filters" : [
|
|
5
|
-
{ "condition": "=", "value" : "0", "ftype" : "SIZE", "scope": "FILE" },
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
{ "condition" : "starts", "value" : ".", "ftype" : "NAME" },
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
{ "condition" : "ends", "value" : ".egg-info", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
12
|
-
|
|
13
|
-
{ "condition" : "fullmatch", "value" : "nbproject", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
14
|
-
{ "condition" : "fullmatch", "value" : "nbbuild", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
15
|
-
{ "condition" : "fullmatch", "value" : "nbdist", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
16
|
-
{ "condition" : "fullmatch", "value" : "__pycache__", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
17
|
-
{ "condition" : "fullmatch", "value" : "venv", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
18
|
-
{ "condition" : "fullmatch", "value" : "_yardoc", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
19
|
-
{ "condition" : "fullmatch", "value" : "eggs", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
20
|
-
{ "condition" : "fullmatch", "value" : "wheels", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
21
|
-
{ "condition" : "fullmatch", "value" : "htmlcov", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
22
|
-
{ "condition" : "fullmatch", "value" : "__pypackages__", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
{ "condition" : "fullmatch", "value" : "gradlew", "ftype" : "NAME", "scope" : "FILE" },
|
|
28
|
-
{ "condition" : "fullmatch", "value" : "gradlew.bat", "ftype" : "NAME", "scope" : "FILE" },
|
|
29
|
-
{ "condition" : "fullmatch", "value" : "mvnw", "ftype" : "NAME", "scope" : "FILE" },
|
|
30
|
-
{ "condition" : "fullmatch", "value" : "mvnw.cmd", "ftype" : "NAME", "scope" : "FILE" },
|
|
31
|
-
{ "condition" : "fullmatch", "value" : "gradle-wrapper.jar", "ftype" : "NAME", "scope" : "FILE" },
|
|
32
|
-
{ "condition" : "fullmatch", "value" : "maven-wrapper.jar", "ftype" : "NAME", "scope" : "FILE" },
|
|
33
|
-
{ "condition" : "fullmatch", "value" : "thumbs.db", "ftype" : "NAME", "scope" : "FILE" },
|
|
34
|
-
{ "condition" : "fullmatch", "value" : "babel.config.js", "ftype" : "NAME", "scope" : "FILE" },
|
|
35
|
-
{ "condition" : "fullmatch", "value" : "license.txt", "ftype" : "NAME", "scope" : "FILE" },
|
|
36
|
-
{ "condition" : "fullmatch", "value" : "license.md", "ftype" : "NAME", "scope" : "FILE" },
|
|
37
|
-
{ "condition" : "fullmatch", "value" : "copying.lib", "ftype" : "NAME", "scope" : "FILE" },
|
|
38
|
-
{ "condition" : "fullmatch", "value" : "makefile", "ftype" : "NAME", "scope" : "FILE" },
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
{ "condition" : "starts", "value" : ".asar", "ftype" : "NAME", "scope" : "FILE" },
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
{ "condition" : "ends", "value" : "news", "ftype" : "NAME", "scope" : "FILE" },
|
|
45
|
-
{ "condition" : "ends", "value" : "authors", "ftype" : "NAME", "scope" : "FILE" },
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
{ "condition" : "ends", "value" : "-doc", "ftype" : "NAME", "scope" : "FILE" },
|
|
49
|
-
{ "condition" : "ends", "value" : "changelog", "ftype" : "NAME", "scope" : "FILE" },
|
|
50
|
-
{ "condition" : "ends", "value" : "config", "ftype" : "NAME", "scope" : "FILE" },
|
|
51
|
-
{ "condition" : "ends", "value" : "copying", "ftype" : "NAME", "scope" : "FILE" },
|
|
52
|
-
{ "condition" : "ends", "value" : "license", "ftype" : "NAME", "scope" : "FILE" },
|
|
53
|
-
{ "condition" : "ends", "value" : "licenses", "ftype" : "NAME", "scope" : "FILE" },
|
|
54
|
-
{ "condition" : "ends", "value" : "notice", "ftype" : "NAME", "scope" : "FILE" },
|
|
55
|
-
{ "condition" : "ends", "value" : "readme", "ftype" : "NAME", "scope" : "FILE" },
|
|
56
|
-
{ "condition" : "ends", "value" : "swiftdoc", "ftype" : "NAME", "scope" : "FILE" },
|
|
57
|
-
{ "condition" : "ends", "value" : "texidoc", "ftype" : "NAME", "scope" : "FILE" },
|
|
58
|
-
{ "condition" : "ends", "value" : "todo", "ftype" : "NAME", "scope" : "FILE" },
|
|
59
|
-
{ "condition" : "ends", "value" : "version", "ftype" : "NAME", "scope" : "FILE" },
|
|
60
|
-
{ "condition" : "ends", "value" : "ignore", "ftype" : "NAME", "scope" : "FILE" },
|
|
61
|
-
{ "condition" : "ends", "value" : "manifest", "ftype" : "NAME", "scope" : "FILE" },
|
|
62
|
-
{ "condition" : "ends", "value" : "sqlite", "ftype" : "NAME", "scope" : "FILE" },
|
|
63
|
-
{ "condition" : "ends", "value" : "sqlite3", "ftype" : "NAME", "scope" : "FILE" },
|
|
64
|
-
|
|
65
|
-
{ "condition" : "=", "value" : ".1", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
66
|
-
{ "condition" : "=", "value" : ".2", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
67
|
-
{ "condition" : "=", "value" : ".3", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
68
|
-
{ "condition" : "=", "value" : ".4", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
69
|
-
{ "condition" : "=", "value" : ".5", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
70
|
-
{ "condition" : "=", "value" : ".6", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
71
|
-
{ "condition" : "=", "value" : ".7", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
72
|
-
{ "condition" : "=", "value" : ".8", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
73
|
-
{ "condition" : "=", "value" : ".9", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
74
|
-
{ "condition" : "=", "value" : ".ac", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
75
|
-
{ "condition" : "=", "value" : ".adoc", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
76
|
-
{ "condition" : "=", "value" : ".am", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
77
|
-
{ "condition" : "=", "value" : ".asciidoc", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
78
|
-
{ "condition" : "=", "value" : ".bmp", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
79
|
-
{ "condition" : "=", "value" : ".build", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
80
|
-
{ "condition" : "=", "value" : ".cfg", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
81
|
-
{ "condition" : "=", "value" : ".chm", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
82
|
-
{ "condition" : "=", "value" : ".class", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
83
|
-
{ "condition" : "=", "value" : ".cmake", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
84
|
-
{ "condition" : "=", "value" : ".cnf", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
85
|
-
{ "condition" : "=", "value" : ".conf", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
86
|
-
{ "condition" : "=", "value" : ".config", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
87
|
-
{ "condition" : "=", "value" : ".contributors", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
88
|
-
{ "condition" : "=", "value" : ".copying", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
89
|
-
{ "condition" : "=", "value" : ".crt", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
90
|
-
{ "condition" : "=", "value" : ".csproj", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
91
|
-
{ "condition" : "=", "value" : ".css", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
92
|
-
{ "condition" : "=", "value" : ".csv", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
93
|
-
{ "condition" : "=", "value" : ".dat", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
94
|
-
{ "condition" : "=", "value" : ".data", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
95
|
-
{ "condition" : "=", "value" : ".doc", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
96
|
-
{ "condition" : "=", "value" : ".docx", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
97
|
-
{ "condition" : "=", "value" : ".dtd", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
98
|
-
{ "condition" : "=", "value" : ".dts", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
99
|
-
{ "condition" : "=", "value" : ".iws", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
100
|
-
{ "condition" : "=", "value" : ".c9", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
101
|
-
{ "condition" : "=", "value" : ".c9revisions", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
102
|
-
{ "condition" : "=", "value" : ".dtsi", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
103
|
-
{ "condition" : "=", "value" : ".dump", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
104
|
-
{ "condition" : "=", "value" : ".eot", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
105
|
-
{ "condition" : "=", "value" : ".eps", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
106
|
-
{ "condition" : "=", "value" : ".geojson", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
107
|
-
{ "condition" : "=", "value" : ".gdoc", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
108
|
-
{ "condition" : "=", "value" : ".gif", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
109
|
-
{ "condition" : "=", "value" : ".glif", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
110
|
-
{ "condition" : "=", "value" : ".gmo", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
111
|
-
{ "condition" : "=", "value" : ".gradle", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
112
|
-
{ "condition" : "=", "value" : ".guess", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
113
|
-
{ "condition" : "=", "value" : ".hex", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
114
|
-
{ "condition" : "=", "value" : ".htm", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
115
|
-
{ "condition" : "=", "value" : ".html", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
116
|
-
{ "condition" : "=", "value" : ".ico", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
117
|
-
{ "condition" : "=", "value" : ".iml", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
118
|
-
{ "condition" : "=", "value" : ".in", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
119
|
-
{ "condition" : "=", "value" : ".inc", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
120
|
-
{ "condition" : "=", "value" : ".info", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
121
|
-
{ "condition" : "=", "value" : ".ini", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
122
|
-
{ "condition" : "=", "value" : ".ipynb", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
123
|
-
{ "condition" : "=", "value" : ".jpeg", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
124
|
-
{ "condition" : "=", "value" : ".jpg", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
125
|
-
{ "condition" : "=", "value" : ".json", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
126
|
-
{ "condition" : "=", "value" : ".jsonld", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
127
|
-
{ "condition" : "=", "value" : ".lock", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
128
|
-
{ "condition" : "=", "value" : ".log", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
129
|
-
{ "condition" : "=", "value" : ".m4", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
130
|
-
{ "condition" : "=", "value" : ".map", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
131
|
-
{ "condition" : "=", "value" : ".markdown", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
132
|
-
{ "condition" : "=", "value" : ".md", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
133
|
-
{ "condition" : "=", "value" : ".md5", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
134
|
-
{ "condition" : "=", "value" : ".meta", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
135
|
-
{ "condition" : "=", "value" : ".mk", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
136
|
-
{ "condition" : "=", "value" : ".mxml", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
137
|
-
{ "condition" : "=", "value" : ".o", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
138
|
-
{ "condition" : "=", "value" : ".otf", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
139
|
-
{ "condition" : "=", "value" : ".out", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
140
|
-
{ "condition" : "=", "value" : ".pbtxt", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
141
|
-
{ "condition" : "=", "value" : ".pdf", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
142
|
-
{ "condition" : "=", "value" : ".pem", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
143
|
-
{ "condition" : "=", "value" : ".phtml", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
144
|
-
{ "condition" : "=", "value" : ".plist", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
145
|
-
{ "condition" : "=", "value" : ".png", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
146
|
-
{ "condition" : "=", "value" : ".po", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
147
|
-
{ "condition" : "=", "value" : ".ppt", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
148
|
-
{ "condition" : "=", "value" : ".prefs", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
149
|
-
{ "condition" : "=", "value" : ".properties", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
150
|
-
{ "condition" : "=", "value" : ".pyc", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
151
|
-
{ "condition" : "=", "value" : ".qdoc", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
152
|
-
{ "condition" : "=", "value" : ".result", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
153
|
-
{ "condition" : "=", "value" : ".rgb", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
154
|
-
{ "condition" : "=", "value" : ".rst", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
155
|
-
{ "condition" : "=", "value" : ".scss", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
156
|
-
{ "condition" : "=", "value" : ".sha", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
157
|
-
{ "condition" : "=", "value" : ".sha1", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
158
|
-
{ "condition" : "=", "value" : ".sha2", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
159
|
-
{ "condition" : "=", "value" : ".sha256", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
160
|
-
{ "condition" : "=", "value" : ".sln", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
161
|
-
{ "condition" : "=", "value" : ".spec", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
162
|
-
{ "condition" : "=", "value" : ".sql", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
163
|
-
{ "condition" : "=", "value" : ".sub", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
164
|
-
{ "condition" : "=", "value" : ".svg", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
165
|
-
{ "condition" : "=", "value" : ".svn-base", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
166
|
-
{ "condition" : "=", "value" : ".tab", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
167
|
-
{ "condition" : "=", "value" : ".template", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
168
|
-
{ "condition" : "=", "value" : ".test", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
169
|
-
{ "condition" : "=", "value" : ".tex", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
170
|
-
{ "condition" : "=", "value" : ".tiff", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
171
|
-
{ "condition" : "=", "value" : ".toml", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
172
|
-
{ "condition" : "=", "value" : ".ttf", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
173
|
-
{ "condition" : "=", "value" : ".txt", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
174
|
-
{ "condition" : "=", "value" : ".utf-8", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
175
|
-
{ "condition" : "=", "value" : ".vim", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
176
|
-
{ "condition" : "=", "value" : ".wav", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
177
|
-
{ "condition" : "=", "value" : ".whl", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
178
|
-
{ "condition" : "=", "value" : ".woff", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
179
|
-
{ "condition" : "=", "value" : ".xht", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
180
|
-
{ "condition" : "=", "value" : ".xhtml", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
181
|
-
{ "condition" : "=", "value" : ".xls", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
182
|
-
{ "condition" : "=", "value" : ".xlsx", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
183
|
-
{ "condition" : "=", "value" : ".xml", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
184
|
-
{ "condition" : "=", "value" : ".xpm", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
185
|
-
{ "condition" : "=", "value" : ".xsd", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
186
|
-
{ "condition" : "=", "value" : ".xul", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
187
|
-
{ "condition" : "=", "value" : ".yaml", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
188
|
-
{ "condition" : "=", "value" : ".yml", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
189
|
-
{ "condition" : "=", "value" : ".wfp", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
190
|
-
{ "condition" : "=", "value" : ".editorconfig", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
191
|
-
{ "condition" : "=", "value" : ".dotcover", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
192
|
-
{ "condition" : "=", "value" : ".pid", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
193
|
-
{ "condition" : "=", "value" : ".lcov", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
194
|
-
{ "condition" : "=", "value" : ".egg", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
195
|
-
{ "condition" : "=", "value" : ".manifest", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
196
|
-
{ "condition" : "=", "value" : ".cache", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
197
|
-
{ "condition" : "=", "value" : ".coverage", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
198
|
-
{ "condition" : "=", "value" : ".cover", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
199
|
-
{ "condition" : "=", "value" : ".gem", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
200
|
-
{ "condition" : "=", "value" : ".lst", "ftype" : "EXTENSION", "scope" : "FILE" }
|
|
201
|
-
]
|
|
202
|
-
}
|
|
203
|
-
|