Skip to content
This repository has been archived by the owner on Jun 9, 2021. It is now read-only.

Commit

Permalink
changing some more files
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasbjerre committed Mar 6, 2016
1 parent cea7662 commit 2b05970
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 4 deletions.
10 changes: 8 additions & 2 deletions build.gradle
Expand Up @@ -5,7 +5,7 @@
}
}
dependencies {
classpath "se.bjurr.violations:violation-comments-to-github-gradle-plugin:1.1"
classpath "se.bjurr.violations:violation-comments-to-github-gradle-plugin:1.4"
}
}

Expand All @@ -29,7 +29,13 @@ task violationCommentsToGitHub(type: se.bjurr.violations.comments.github.plugin.
["PMD", ".", ".*/pmd/.*\\.xml\$"],
["CHECKSTYLE", ".", ".*/checkstyle/.*\\.xml\$"],
["JSHINT", ".", ".*/jshint/.*\\.xml\$"],
["CSSLINT", ".", ".*/csslint/.*\\.xml\$"]
["CSSLINT", ".", ".*/csslint/.*\\.xml\$"],
["CPPCHECK", ".", ".*/cppcheck/.*\\.xml\$"],
["CPPLINT", ".", ".*/cpplint/.*\\.txt\$"],
["FLAKE8", ".", ".*/flake8/.*\\.txt\$"],
["JSHINT", ".", ".*/jshint/.*\\.xml\$"],
["PERLCRITIC", ".", ".*/perlcritic/.*\\.txt\$"],
["XMLLINT", ".", ".*/xmllint/.*\\.txt\$"]
]
}

Expand Down
1 change: 1 addition & 0 deletions cpp/test.cpp
Expand Up @@ -18,5 +18,6 @@ int main() {
cout << n << endl;
}


return 0;
}
1 change: 1 addition & 0 deletions perl/example.pl
Expand Up @@ -7,3 +7,4 @@
next if $file->is_dir();
print $file->stringify . "\n";
}

1 change: 1 addition & 0 deletions python/project/file.py
Expand Up @@ -8,6 +8,7 @@

import copy


class StringProcessor(object):
'''
A class to process strings in various ways.
Expand Down
1 change: 1 addition & 0 deletions web/css-file.css
@@ -1,4 +1,5 @@
.klass {
font-size: 14px;

font-size: 14px;
}
2 changes: 2 additions & 0 deletions web/js-file.js
@@ -1,6 +1,8 @@
function funk(a,b) {
if (a == b)
return a;
if (a == d)
return a;
if (a == null)
return b;
if (c)
Expand Down
2 changes: 1 addition & 1 deletion xml/myxml.xml
@@ -1,3 +1,3 @@
<start>
<noend/>
<noend/>
</start>
2 changes: 1 addition & 1 deletion xml/other.xml
@@ -1,6 +1,6 @@
<html>
<head></head>
<body>
<font>
<font>
</body>
</html>

0 comments on commit 2b05970

Please sign in to comment.