Skip to content
This repository was archived by the owner on Feb 12, 2022. It is now read-only.

Sasquatch #9

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
(sasquatch) deals with checks failing
Christopher McCulloh committed Sep 30, 2015
commit c2d6111bdf599b7ad4aa755edad500c4e9ce5f49
12 changes: 5 additions & 7 deletions linters/.jsfmtrc
Original file line number Diff line number Diff line change
@@ -39,29 +39,27 @@
"before": {
"EndOfFile": 2,
"FunctionExpression": 0,
"FunctionExpressionClosingBrace": 1,
"FunctionExpressionClosingBrace": 0,
"ObjectExpressionClosingBrace": 1
},
"after": {
"FunctionExpressionOpeningBrace": 1,
"FunctionDeclarationOpeningBrace": 1,
"IfStatement": 1,
"IfStatementOpeningBrace": 1,
"IfStatementClosingBrace": 2,
"IfStatementClosingBrace": -1,//Don't apply this rule, it puts a blank line padding between closing braces in nested ifs
"ElseIfStatementOpeningBrace": 1,
"ElseIfStatementClosingBrace": 2,
"ElseIfStatementClosingBrace": -1,
"ElseStatementOpeningBrace": 1,
"ElseStatementClosingBrace": 2
"ElseStatementClosingBrace": -1
}
},
"plugins": [
"esformatter-quotes",
"esformatter-semicolons",
"esformatter-braces",
"esformatter-dot-notation",
"esformatter-spaced-lined-comment",
"esformatter-var-each",
"esformatter-jsx-ignore"
"esformatter-spaced-lined-comment"
]
}
}