initial commit of actions
This commit is contained in:
commit
949ece5785
44660 changed files with 12034344 additions and 0 deletions
|
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* @name Foo Show Ifs
|
||||
* @description Foo Show Ifs
|
||||
* @kind problem
|
||||
* @id complex-javascript-querypack/foo-show-ifs
|
||||
*/
|
||||
|
||||
import javascript
|
||||
|
||||
from IfStmt i
|
||||
select i, "foo if"
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* @name Bar Show Ifs
|
||||
* @description Bar Show Ifs
|
||||
* @kind problem
|
||||
* @id complex-javascript-querypack/bar-ifs
|
||||
*/
|
||||
|
||||
import javascript
|
||||
|
||||
from IfStmt i
|
||||
select i, "bar if"
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* @name Barfoobar Show Ifs
|
||||
* @description Barfoobar Show Ifs
|
||||
* @kind problem
|
||||
* @id complex-javascript-querypack/barfoobar-ifs
|
||||
*/
|
||||
|
||||
import javascript
|
||||
|
||||
from IfStmt i
|
||||
select i, "barfoobar if"
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* @name Foo2 Show Ifs
|
||||
* @description Foo2 Show Ifs
|
||||
* @kind problem
|
||||
* @id complex-javascript-querypack/foo2-ifs
|
||||
*/
|
||||
|
||||
import javascript
|
||||
|
||||
from IfStmt i
|
||||
select i, "foo2 if"
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
name: complex-javascript-querypack
|
||||
version: 0.0.1
|
||||
libraryPathDependencies: codeql-javascript
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* @name Root Show Ifs
|
||||
* @description Root Show Ifs
|
||||
* @kind problem
|
||||
* @id complex-javascript-querypack/root-show-ifs
|
||||
*/
|
||||
|
||||
import javascript
|
||||
|
||||
from IfStmt i
|
||||
select i, "root if"
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* @name Foo/Bar Show Ifs
|
||||
* @description Foo/Bar Show Ifs
|
||||
* @kind problem
|
||||
* @id complex-python-querypack/foo/bar/show-ifs
|
||||
*/
|
||||
|
||||
import python
|
||||
|
||||
from If i
|
||||
select i, "foo/bar if"
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* @name Foo Show Ifs
|
||||
* @description Foo Show Ifs
|
||||
* @kind problem
|
||||
* @id complex-python-querypack/foo/show-ifs
|
||||
*/
|
||||
|
||||
import python
|
||||
|
||||
from If i
|
||||
select i, "foo if"
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
name: inrepo-python-querypack
|
||||
version: 0.0.1
|
||||
libraryPathDependencies: codeql-python
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
- query: show_ifs.ql
|
||||
- query: foo/bar/show_ifs.ql
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* @name Show Ifs
|
||||
* @description Show Ifs
|
||||
* @kind problem
|
||||
* @id complex-python-querypack/show-ifs
|
||||
*/
|
||||
|
||||
import python
|
||||
|
||||
from If i
|
||||
select i, "hello if"
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
name: inrepo-cpp-querypack
|
||||
version: 0.0.1
|
||||
libraryPathDependencies: codeql-cpp
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* @name Show Cpp Ifs
|
||||
* @description Show Cpp Ifs
|
||||
* @kind problem
|
||||
* @id inrepo-cpp-querypack/show-ifs
|
||||
*/
|
||||
|
||||
import cpp
|
||||
|
||||
from IfStmt i
|
||||
select i, "hello if"
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
name: inrepo-csharp-querypack
|
||||
version: 0.0.1
|
||||
libraryPathDependencies: codeql-csharp
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* @name Show Csharp Ifs
|
||||
* @description Show Csharp Ifs
|
||||
* @kind problem
|
||||
* @id inrepo-csharp-querypack/show-ifs
|
||||
*/
|
||||
|
||||
import csharp
|
||||
|
||||
from IfStmt i
|
||||
select i, "hello if"
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
name: inrepo-go-querypack
|
||||
version: 0.0.1
|
||||
libraryPathDependencies: codeql-go
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* @name Show Go Ifs
|
||||
* @description Show Go Ifs
|
||||
* @kind problem
|
||||
* @id inrepo-go-querypack/show-ifs
|
||||
*/
|
||||
|
||||
import go
|
||||
|
||||
from IfStmt i
|
||||
select i, "hello if"
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
name: inrepo-java-querypack
|
||||
version: 0.0.1
|
||||
libraryPathDependencies: codeql-java
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* @name Show Java Ifs
|
||||
* @description Show Java Ifs
|
||||
* @kind problem
|
||||
* @id inrepo-java-querypack/show-ifs
|
||||
*/
|
||||
|
||||
import java
|
||||
|
||||
from IfStmt i
|
||||
select i, "hello if"
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
name: inrepo-javascript-querypack
|
||||
version: 0.0.1
|
||||
libraryPathDependencies: codeql-javascript
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* @name Show JavaScript Ifs
|
||||
* @description Show JavaScript Ifs
|
||||
* @kind problem
|
||||
* @id inrepo-javascript-querypack/show-ifs
|
||||
*/
|
||||
|
||||
import javascript
|
||||
|
||||
from IfStmt i
|
||||
select i, "hello if"
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
name: inrepo-python-querypack
|
||||
version: 0.0.1
|
||||
libraryPathDependencies: codeql-python
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* @name Show Python Ifs
|
||||
* @description Show Python Ifs
|
||||
* @kind problem
|
||||
* @id inrepo-python-querypack/show-ifs
|
||||
*/
|
||||
|
||||
import python
|
||||
|
||||
from If i
|
||||
select i, "hello if"
|
||||
Loading…
Add table
Add a link
Reference in a new issue