Skip to content

Commit

Permalink
Merge pull request #2 from vojtasvoboda/feature/update
Browse files Browse the repository at this point in the history
Update libs
  • Loading branch information
gwagroves authored Mar 28, 2017
2 parents 1eaa9d2 + 5ac4497 commit 6bb5cd1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 29 deletions.
24 changes: 1 addition & 23 deletions .jscsrc
Original file line number Diff line number Diff line change
Expand Up @@ -47,23 +47,6 @@
"<",
"<="
],
"disallowLeftStickedOperators": [
"?",
"+",
"-",
"/",
"*",
"=",
"==",
"===",
"!=",
"!==",
">",
">=",
"<",
"<="
],
"requireRightStickedOperators": ["!"],
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"],
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
"requireSpaceBeforeBinaryOperators": [
Expand Down Expand Up @@ -96,10 +79,5 @@
"disallowTrailingWhitespace": true,
"disallowKeywordsOnNewLine": ["else"],
"requireLineFeedAtFileEnd": true,
"requireDotNotation": true,
"validateJSDoc": {
"checkParamNames": true,
"checkRedundantParams": true,
"requireParamTypes": true
}
"requireDotNotation": true
}
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = function(grunt) {

// Project configuration.
grunt.initConfig({
grunt.config.init({

pkg: grunt.file.readJSON('package.json'),

Expand All @@ -13,7 +13,7 @@ module.exports = function(grunt) {

grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-jscs-checker');
grunt.loadNpmTasks('grunt-jscs');

grunt.registerTask(
'default',
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
},
"homepage": "https://github.com/gwa/jflickrfeed",
"devDependencies": {
"grunt": "^0.4.4",
"grunt-contrib-jshint": "^0.10.0",
"grunt-jscs-checker": "^0.4.1",
"grunt-contrib-uglify": "^0.4.0"
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.1.0",
"grunt-jscs": "^3.0.1",
"grunt-contrib-uglify": "^2.2.0"
}
}

0 comments on commit 6bb5cd1

Please sign in to comment.