Created
April 3, 2015 09:22
-
-
Save SimenB/ac2fe5db1f43ae8ec7a7 to your computer and use it in GitHub Desktop.
JSCS false positive requirePaddingNewLineAfterVariableDeclaration
This file contains hidden or 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
Show hidden characters
{ | |
"requirePaddingNewLineAfterVariableDeclaration": true | |
} |
This file contains hidden or 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
var myView = Backbone.View.extend({ | |
initialize: function(options) { | |
this.a = options.a; | |
this.b = options.b; | |
} | |
}); |
This file contains hidden or 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
{ | |
"name": "jscs-false-positive", | |
"private": true, | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"test": "jscs index.js" | |
}, | |
"author": "", | |
"license": "ISC", | |
"devDependencies": { | |
"jscs": "^1.12.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment