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
Show file tree
Hide file tree
Changes from all commits
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
65 changes: 65 additions & 0 deletions linters/.jsfmtrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{
"autoformat": true,
"extensions":
[
"js"
],
"options": {
"indent": {
"value": "\t",
"BinaryExpression": 1,
"ConditionalExpression": 1
},
"quotes": {
"type": "single",
"avoidEscape": true
},
"whiteSpace": {
"value": " ",
"removeTrailing": 1,
"before": {
"ArgumentListArrayExpression": 0,
"ArgumentListFunctionExpression": 0,
"ArgumentListObjectExpression": 0,
"BlockComment": 0,
"IfStatementClosingBrace": 1,
"IfStatementConditionalClosing": 0,
"IfStatementOpeningBrace": 1
},
"after": {
"ArgumentListArrayExpression": 0,
"ArgumentListFunctionExpression": 0,
"ArgumentListObjectExpression": 0,
"FunctionReservedWord": 1,
"FunctionName" : 1
}
},
"lineBreak": {
"value": "\n",
"before": {
"EndOfFile": 2,
"FunctionExpression": 0,
"FunctionExpressionClosingBrace": 1,
"ObjectExpressionClosingBrace": 1
},
"after": {
"FunctionExpressionOpeningBrace": 1,
"FunctionDeclarationOpeningBrace": 1,
"IfStatement": 1,
"IfStatementOpeningBrace": 1,
"IfStatementClosingBrace": -1,//Don't apply this rule
"ElseIfStatementOpeningBrace": 1,
"ElseIfStatementClosingBrace": -1,
"ElseStatementOpeningBrace": 1,
"ElseStatementClosingBrace": -1
}
},
"plugins": [
"esformatter-quotes",
"esformatter-semicolons",
"esformatter-braces",
"esformatter-dot-notation",
"esformatter-spaced-lined-comment"
]
}
}
57 changes: 35 additions & 22 deletions linters/EsFormatter.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,34 @@
// EsFormatter specific options
// default are specified here https://github.com/millermedeiros/esformatter/blob/master/lib/preset/default.json
"format_options" : {

"indent": {
"value": " ",
"value": "\t",
"BinaryExpression": 1,
"ConditionalExpression": 1,
"ConditionalExpression": 1
},
"quotes": {
"type": "single",
"avoidEscape": true
},
"whiteSpace": {
"value": " ",
"removeTrailing": 1,
"before": {
"ArgumentListArrayExpression": 0,
"ArgumentListFunctionExpression": 0,
"ArgumentListObjectExpression": 0,
"BlockComment": 0,
"IfStatementClosingBrace": 1,
"IfStatementConditionalClosing": 0,
"IfStatementOpeningBrace": 1
},
"after": {
"ArgumentListArrayExpression": 0,
"ArgumentListFunctionExpression": 0,
"ArgumentListObjectExpression": 0,
"FunctionReservedWord": 1,
"FunctionName" : 1
}
},
"lineBreak": {
"value": "\n",
Expand All @@ -31,25 +54,15 @@
"ElseStatementClosingBrace": 2
}
},
"whiteSpace": {
"value": " ",
"removeTrailing": 1,
"before": {
"ArgumentListArrayExpression": 0,
"ArgumentListFunctionExpression": 0,
"ArgumentListObjectExpression": 0,
"BlockComment": 0,
"IfStatementClosingBrace": 0,
"LineComment": 0
},
"after": {
"ArgumentListArrayExpression": 0,
"ArgumentListFunctionExpression": 0,
"ArgumentListObjectExpression": 0,
"CallExpression": 0,
"FunctionReservedWord": 1,
}
}
"plugins": [
"esformatter-quotes",
"esformatter-semicolons",
"esformatter-braces",
"esformatter-dot-notation",
"esformatter-spaced-lined-comment",
"esformatter-var-each",
"esformatter-jsx-ignore"
]
}

}
13 changes: 13 additions & 0 deletions linters/INSTALL.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Installing plugins for Sublime's jsfmt (esformatter)

https://github.com/ionutvmi/sublime-jsfmt

## spaced-comment
https://github.com/briandipalma/esformatter-spaced-lined-comment

If you want to use a plugin that is not installed by default you will need to follow the next steps:

1. Go to the packages folder in terminal (find by Preferences -> Browse Packages)
1. cd into the jsfmt folder.
1. Install the plugins you need. `npm i esformatter-quotes && npm i esformatter-semicolons && npm i esformatter-braces && npm i esformatter-dot-notation && npm i esformatter-spaced-lined-comment && npm i esformatter-jsx-ignore && npm i esformatter-var-each`
1. Go to your jsfmt settings file and add the name of the plugin in the plugins array.