Skip to content
This repository was archived by the owner on Dec 2, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from 10 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
43 changes: 43 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,49 @@ module.exports = {
"semi": [
"warn",
"always"
],
"key-spacing": [
"error"
],
"func-call-spacing": [
"error",
"never"
], "block-spacing": [

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's put all value declarations on its own line.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

"error"
],
"array-bracket-spacing": [
"error"
], "keyword-spacing": [
"error"
],
"semi-spacing": [
"error"
], "arrow-spacing": [
"error"
],
"no-tabs": [
"error"
],
"space-before-function-paren": [
"error",
"never"
],"no-multiple-empty-lines": [
"error",
{ "max": 1 }
],"padded-blocks": [
"error",
"never"
],"padding-line-between-statements": [
"error",
{ "blankLine": "always", "prev": "*", "next": "if" },
],"sort-imports": [
"error"
],"comma-dangle": [
"error",
"never"
],"object-curly-spacing": [
"error",
"always"
]
}
};
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
.cert*
.env*
data*
node_modules
node_modules
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module.exports = function(grunt) {
jsdoc: {
build: {
options: {
configure : '.jsdoc.json'
configure: '.jsdoc.json'
}
}
},
Expand Down
Binary file added app/.DS_Store
Binary file not shown.
Loading