Skip to content

Instantly share code, notes, and snippets.

@SimenB
Created April 3, 2015 09:22
Show Gist options
  • Save SimenB/ac2fe5db1f43ae8ec7a7 to your computer and use it in GitHub Desktop.
Save SimenB/ac2fe5db1f43ae8ec7a7 to your computer and use it in GitHub Desktop.
JSCS false positive requirePaddingNewLineAfterVariableDeclaration
{
"requirePaddingNewLineAfterVariableDeclaration": true
}
var myView = Backbone.View.extend({
initialize: function(options) {
this.a = options.a;
this.b = options.b;
}
});
{
"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