-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
146 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Infer | ||
executable: infer | ||
website: https://fbinfer.com/ | ||
packages: | ||
- infer-0.7.0-linux | ||
languages: | ||
- C | ||
- CPlusPlus | ||
- Java | ||
- Objective-C | ||
aspects: | ||
- Security |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
name: pyflakes | ||
executable: pyflakes | ||
packages: | ||
- pyflakes | ||
languages: | ||
- Python | ||
aspects: | ||
- Syntax | ||
- Unused Code | ||
- Undefined Element |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
name: infer | ||
manager: opam | ||
source: https://github.com/facebook/infer/releases/download/ | ||
v0.7.0/infer-linux64-v0.7.0.tar.xz | ||
version: 0.7.0 | ||
platform: linux |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
name: pyflakes | ||
manager: pip | ||
version: 2.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- pk: npm | ||
- pk: opam | ||
- pk: pip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# pk: String |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name: String | ||
executable: String | ||
repology_id: String # optional | ||
wikidata: String # optional | ||
website: String | ||
languages: Language[] | ||
aspects: Aspect[] # i.e. CAN_DETECT & CAN_FIX | ||
packages: Package[] # only needed where Repology does not provide |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name: String | ||
manager: PackageManager | ||
version: String | ||
repology_id: String # optional | ||
wikidata: String # optional | ||
source: String # optional | ||
platform: Platform # optional |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# pk: String |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# pk: String |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>{{ site_title }}: {{ linter.name }}</title> | ||
<link rel="stylesheet" href="../assets/css/coala.css" type="text/css" /> | ||
<link rel="stylesheet" href="../assets/css/coast.css" type="text/css" /> | ||
</head> | ||
<body> | ||
<section class="thin-row-small"> | ||
<h1>{{ linter.name }}</h1> | ||
</section> | ||
<table> | ||
<tr> | ||
<th>executable</th> | ||
<td>{{ linter.executable }}</td> | ||
</tr> | ||
<tr> | ||
<th>Repology</th> | ||
<td>{{ linter.repology_id }}</td> | ||
</tr> | ||
<tr> | ||
<th>Wikidata</th> | ||
<td>{{ linter.wikidata }}</td> | ||
</tr> | ||
<tr> | ||
<th>Packages</th> | ||
<td> | ||
<ul> | ||
{% for package in linter.packages %} | ||
<li>{{ package.manager.name }} {{ package.name }} | ||
{% endfor %} | ||
</ul> | ||
</td> | ||
</tr> | ||
</table> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>{{ site_title }}: {{ package.name }}</title> | ||
<link rel="stylesheet" href="../assets/css/coala.css" type="text/css" /> | ||
<link rel="stylesheet" href="../assets/css/coast.css" type="text/css" /> | ||
</head> | ||
<body> | ||
<section class="thin-row-small"> | ||
<h1>{{ package.name }}</h1> | ||
</section> | ||
<table> | ||
<tr> | ||
<th>Package manager</th> | ||
<td>{{ package.manager.name }}</td> | ||
</tr> | ||
<tr> | ||
<th>Version</th> | ||
<td>{{ package.version }}</td> | ||
</tr> | ||
<tr> | ||
<th>Source</th> | ||
<td>{{ package.source }}</td> | ||
</tr> | ||
<tr> | ||
<th>Platform</th> | ||
<td>{{ package.platform }}</td> | ||
</tr> | ||
</table> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
path: | ||
template: /{{ linter.name }}/ | ||
for-each: | ||
linter: session.query(Linter).all() | ||
template: Linter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
path: | ||
template: /{{ package.manager.pk }}/{{ package.name }}-{{ package.version }}/ | ||
for-each: | ||
package: session.query(Package).all() | ||
template: Package |