Skip to content

Instantly share code, notes, and snippets.

@FuruholmAnton
Last active March 28, 2017 14:12
Show Gist options
  • Save FuruholmAnton/5c81911a19669a5ba420 to your computer and use it in GitHub Desktop.
Save FuruholmAnton/5c81911a19669a5ba420 to your computer and use it in GitHub Desktop.
npm install -g jscs
{
"preset": "google",
//"preset": "airbnb",
"validateIndentation": 4,
"requireLineBreakAfterVariableAssignment": true,
"requireLineFeedAtFileEnd": true,
"requireNewlineBeforeSingleStatementsInIf": true,
"requireObjectKeysOnNewLine": true,
"requireOperatorBeforeLineBreak": [
"?",
"=",
"+",
"-",
"/",
"*",
"==",
"===",
"!=",
"!==",
">",
">=",
"<",
"<="
],
"requirePaddingNewLineAfterVariableDeclaration": true,
"requirePaddingNewLinesAfterBlocks": true,
"disallowVar": true
//"requirePaddingNewlinesInBlocks": { "open": false, "close": true, allExcept: ['functions'] }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment