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 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
56 changes: 56 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,62 @@ module.exports = {
"semi": [
"warn",
"always"
],
"key-spacing": [
"error"
],
"func-call-spacing": [
"error",
"never"
],
"block-spacing": [
"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