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.
Files changed (158) hide show
  1. package/.github/workflows/reuse.yml +15 -0
  2. package/.github/workflows/scanoss.yml +24 -0
  3. package/.gitignore +0 -1
  4. package/.idea/.gitignore +5 -0
  5. package/.idea/codeStyles/Project.xml +61 -0
  6. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  7. package/.idea/inspectionProfiles/Project_Default.xml +6 -0
  8. package/.idea/modules.xml +8 -0
  9. package/.idea/scanoss.js.iml +12 -0
  10. package/.idea/vcs.xml +6 -0
  11. package/.idea/workspace.xml +366 -0
  12. package/.nyc_output/a25d3ac4-ee71-4c5e-926e-3a17714555cd.json +1 -0
  13. package/.nyc_output/processinfo/a25d3ac4-ee71-4c5e-926e-3a17714555cd.json +1 -0
  14. package/.nyc_output/processinfo/index.json +1 -0
  15. package/.reuse/dep5 +16 -0
  16. package/LICENSES/CC0-1.0.txt +121 -0
  17. package/LICENSES/MIT.txt +9 -0
  18. package/README.md +9 -0
  19. package/build/main/bin/cli-bin.js +5 -3
  20. package/build/main/commands/dep.js +1 -2
  21. package/build/main/commands/fingerprint.js +20 -12
  22. package/build/main/commands/helpers.js +1 -2
  23. package/build/main/commands/scan.js +7 -2
  24. package/build/main/index.js +1 -2
  25. package/build/main/lib/dependencies/DependencyScanner.d.ts +1 -1
  26. package/build/main/lib/dependencies/DependencyScanner.js +23 -12
  27. package/build/main/lib/dependencies/DependencyScannerCfg.js +1 -2
  28. package/build/main/lib/dependencies/DependencyTypes.js +0 -1
  29. package/build/main/lib/dependencies/LocalDependency/DependencyTypes.js +0 -1
  30. package/build/main/lib/dependencies/LocalDependency/LocalDependency.js +3 -2
  31. package/build/main/lib/dependencies/LocalDependency/parsers/golangParser.d.ts +1 -0
  32. package/build/main/lib/dependencies/LocalDependency/parsers/golangParser.js +50 -16
  33. package/build/main/lib/dependencies/LocalDependency/parsers/mavenParser.js +130 -15
  34. package/build/main/lib/dependencies/LocalDependency/parsers/npmParser.d.ts +10 -0
  35. package/build/main/lib/dependencies/LocalDependency/parsers/npmParser.js +146 -10
  36. package/build/main/lib/dependencies/LocalDependency/parsers/pyParser.js +1 -2
  37. package/build/main/lib/dependencies/LocalDependency/parsers/rubyParser.js +1 -2
  38. package/build/main/lib/dependencies/LocalDependency/parsers/utils.js +1 -2
  39. package/build/main/lib/filters/defaultFilter.js +1 -2
  40. package/build/main/lib/filters/filtering.js +1 -2
  41. package/build/main/lib/grpc/GrpcDependencyService.js +1 -2
  42. package/build/main/lib/grpc/scanoss/api/components/v2/scanoss-components_grpc_pb.d.ts +62 -0
  43. package/build/main/lib/grpc/scanoss/api/components/v2/scanoss-components_grpc_pb.js +128 -0
  44. package/build/main/lib/grpc/scanoss/api/components/v2/scanoss-components_pb.d.ts +1 -0
  45. package/build/main/lib/grpc/scanoss/api/components/v2/scanoss-components_pb.js +1403 -0
  46. package/build/main/lib/scanner/Dispatcher/DispatchableItem.d.ts +14 -5
  47. package/build/main/lib/scanner/Dispatcher/DispatchableItem.js +30 -10
  48. package/build/main/lib/scanner/Dispatcher/Dispatcher.d.ts +2 -2
  49. package/build/main/lib/scanner/Dispatcher/Dispatcher.js +10 -15
  50. package/build/main/lib/scanner/Dispatcher/DispatcherResponse.js +1 -2
  51. package/build/main/lib/scanner/Dispatcher/GlobalControllerAborter.js +1 -2
  52. package/build/main/lib/scanner/Scannable/ScannableItem.js +1 -2
  53. package/build/main/lib/scanner/Scanner.js +13 -9
  54. package/build/main/lib/scanner/ScannerCfg.js +2 -3
  55. package/build/main/lib/scanner/ScannerQueue.d.ts +3 -0
  56. package/build/main/lib/scanner/ScannerQueue.js +8 -0
  57. package/build/main/lib/scanner/ScannerTypes.d.ts +9 -2
  58. package/build/main/lib/scanner/ScannerTypes.js +8 -3
  59. package/build/main/lib/scanner/WfpProvider/FingerprintPackage.d.ts +9 -0
  60. package/build/main/lib/scanner/WfpProvider/FingerprintPackage.js +31 -0
  61. package/build/main/lib/scanner/WfpProvider/WfpCalculator/WfpCalculator.js +178 -21
  62. package/build/main/lib/scanner/WfpProvider/WfpCalculator/Winnower.d.ts +3 -0
  63. package/build/main/lib/scanner/WfpProvider/WfpCalculator/Winnower.js +211 -0
  64. package/build/main/lib/scanner/WfpProvider/WfpProvider.d.ts +2 -2
  65. package/build/main/lib/scanner/WfpProvider/WfpProvider.js +6 -7
  66. package/build/main/lib/scanner/WfpProvider/WfpSplitter/WfpSplitter.js +1 -2
  67. package/build/main/lib/tree/File.js +1 -2
  68. package/build/main/lib/tree/Folder.js +1 -2
  69. package/build/main/lib/tree/Node.js +1 -2
  70. package/build/main/lib/tree/Tree.js +1 -2
  71. package/build/module/bin/cli-bin.js +5 -2
  72. package/build/module/commands/fingerprint.js +25 -16
  73. package/build/module/commands/scan.js +8 -2
  74. package/build/module/lib/dependencies/DependencyScanner.d.ts +1 -1
  75. package/build/module/lib/dependencies/DependencyScanner.js +23 -11
  76. package/build/module/lib/dependencies/LocalDependency/LocalDependency.js +5 -3
  77. package/build/module/lib/dependencies/LocalDependency/parsers/golangParser.d.ts +1 -0
  78. package/build/module/lib/dependencies/LocalDependency/parsers/golangParser.js +47 -14
  79. package/build/module/lib/dependencies/LocalDependency/parsers/mavenParser.js +130 -14
  80. package/build/module/lib/dependencies/LocalDependency/parsers/npmParser.d.ts +10 -0
  81. package/build/module/lib/dependencies/LocalDependency/parsers/npmParser.js +140 -8
  82. package/build/module/lib/grpc/scanoss/api/components/v2/scanoss-components_grpc_pb.d.ts +62 -0
  83. package/build/module/lib/grpc/scanoss/api/components/v2/scanoss-components_grpc_pb.js +128 -0
  84. package/build/module/lib/grpc/scanoss/api/components/v2/scanoss-components_pb.d.ts +1 -0
  85. package/build/module/lib/grpc/scanoss/api/components/v2/scanoss-components_pb.js +1403 -0
  86. package/build/module/lib/scanner/Dispatcher/DispatchableItem.d.ts +14 -5
  87. package/build/module/lib/scanner/Dispatcher/DispatchableItem.js +32 -10
  88. package/build/module/lib/scanner/Dispatcher/Dispatcher.d.ts +2 -2
  89. package/build/module/lib/scanner/Dispatcher/Dispatcher.js +10 -14
  90. package/build/module/lib/scanner/Scanner.js +12 -8
  91. package/build/module/lib/scanner/ScannerCfg.js +2 -2
  92. package/build/module/lib/scanner/ScannerQueue.d.ts +3 -0
  93. package/build/module/lib/scanner/ScannerQueue.js +4 -0
  94. package/build/module/lib/scanner/ScannerTypes.d.ts +9 -2
  95. package/build/module/lib/scanner/ScannerTypes.js +7 -1
  96. package/build/module/lib/scanner/WfpProvider/FingerprintPackage.d.ts +9 -0
  97. package/build/module/lib/scanner/WfpProvider/FingerprintPackage.js +30 -0
  98. package/build/module/lib/scanner/WfpProvider/WfpCalculator/WfpCalculator.js +178 -20
  99. package/build/module/lib/scanner/WfpProvider/WfpCalculator/Winnower.d.ts +3 -0
  100. package/build/module/lib/scanner/WfpProvider/WfpCalculator/Winnower.js +211 -0
  101. package/build/module/lib/scanner/WfpProvider/WfpProvider.d.ts +2 -2
  102. package/build/module/lib/scanner/WfpProvider/WfpProvider.js +6 -6
  103. package/build/tsconfig.module.tsbuildinfo +1 -1
  104. package/build/tsconfig.tsbuildinfo +1 -1
  105. package/package.json +6 -17
  106. package/src/bin/cli-bin.ts +4 -1
  107. package/src/commands/fingerprint.ts +26 -17
  108. package/src/commands/scan.ts +16 -3
  109. package/src/lib/dependencies/DependencyScanner.ts +20 -13
  110. package/src/lib/dependencies/LocalDependency/LocalDependency.ts +8 -2
  111. package/src/lib/dependencies/LocalDependency/parsers/golangParser.ts +67 -15
  112. package/src/lib/dependencies/LocalDependency/parsers/mavenParser.ts +143 -16
  113. package/src/lib/dependencies/LocalDependency/parsers/npmParser.ts +182 -7
  114. package/src/lib/scanner/Dispatcher/DispatchableItem.ts +45 -11
  115. package/src/lib/scanner/Dispatcher/Dispatcher.ts +11 -14
  116. package/src/lib/scanner/Scanner.ts +17 -13
  117. package/src/lib/scanner/ScannerCfg.ts +2 -1
  118. package/src/lib/scanner/ScannerTypes.ts +10 -2
  119. package/src/lib/scanner/WfpProvider/{FingerprintPacket.ts → FingerprintPackage.ts} +4 -14
  120. package/src/lib/scanner/WfpProvider/WfpCalculator/WfpCalculator.ts +177 -20
  121. package/src/lib/scanner/WfpProvider/WfpProvider.ts +5 -5
  122. package/tests/WfpCalculator.spec.ts +103 -0
  123. package/tests/data/dependencies/Gemfile/1/Gemfile +6 -0
  124. package/tests/data/dependencies/Gemfile/1/Gemfile~ +0 -0
  125. package/tests/data/dependencies/Gemfile/2/Gemfile +3 -0
  126. package/tests/data/dependencies/Gemfile/2/Gemfile~ +6 -0
  127. package/tests/data/dependencies/Gemfile/3/Gemfile +7 -0
  128. package/tests/data/dependencies/Gemfile/3/Gemfile~ +6 -0
  129. package/tests/data/dependencies/Gemfile/4/Gemfile +31 -0
  130. package/tests/data/dependencies/Gemfile/4/Gemfile~ +7 -0
  131. package/tests/data/dependencies/Gemfile.lock/1/Gemfile.lock +180 -0
  132. package/tests/data/dependencies/Gemfile.lock/2/Gemfile.lock +60 -0
  133. package/tests/data/dependencies/Gemfile.lock/2/Gemfile.lock~ +0 -0
  134. package/tests/data/dependencies/go.sum/1/go.sum +119 -0
  135. package/tests/data/dependencies/go.sum/depJSON.sh +23 -0
  136. package/tests/data/dependencies/package-lock/1/package-lock.json +715 -0
  137. package/tests/data/dependencies/package-lock/2/package-lock.json +32069 -0
  138. package/tests/data/dependencies/package-lock/3/package-lock.json +9013 -0
  139. package/tests/data/dependencies/pom.xml/1/pom.xml +162 -0
  140. package/tests/data/dependencies/yarn-lock/generate_expected_output.sh +4 -0
  141. package/tests/data/dependencies/yarn-lock/v1/yarn.lock +50 -0
  142. package/tests/data/dependencies/yarn-lock/v1/yarn.lock-expected +13 -0
  143. package/tests/data/dependencies/yarn-lock/v1-complex/yarn.lock +27 -0
  144. package/tests/data/dependencies/yarn-lock/v1-complex/yarn.lock-expected +8 -0
  145. package/tests/data/dependencies/yarn-lock/v1-complex2/yarn.lock +220 -0
  146. package/tests/data/dependencies/yarn-lock/v2/yarn.lock +31 -0
  147. package/tests/data/dependencies/yarn-lock/v2/yarn.lock-expected +57 -0
  148. package/tests/data/dependencies/yarn-lock/v2-local/yarn.lock +11 -0
  149. package/tests/data/dependencies/yarn-lock/v2-local/yarn.lock-expected +27204 -0
  150. package/tests/data/scanner/file1.c +41 -0
  151. package/tests/data/scanner/file2.go +87 -0
  152. package/tests/dependencies/golangParser.goModParser.specs.ts +146 -0
  153. package/tests/dependencies/npmParser.spec.ts +133 -0
  154. package/tsconfig.json +4 -3
  155. package/yarn.lock +4596 -5321
  156. package/examples/defaultFilter.json +0 -203
  157. package/package-lock.json +0 -18588
  158. 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
-