Skip to content

Commit

Permalink
Updated to latest fastify, fixed some bugs and added domain field to …
Browse files Browse the repository at this point in the history
…users
  • Loading branch information
Phara0h committed Feb 13, 2021
1 parent ac1de0f commit 74f9001
Show file tree
Hide file tree
Showing 56 changed files with 12,855 additions and 14,247 deletions.
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

165 changes: 0 additions & 165 deletions .eslintrc.js

This file was deleted.

138 changes: 138 additions & 0 deletions .eslintrc.json
@@ -0,0 +1,138 @@
{
"parserOptions": {
"ecmaVersion": 9
},
"ignorePatterns": ["**/sdk/**", "**/gitlab-ci/**"],
"extends": ["prettier"],
"plugins": ["prettier"],
"env": {
"node": true,
"jest": true
},
"rules": {
"comma-dangle": ["error", "never"],
"no-cond-assign": 2,
"no-constant-condition": 2,
"no-control-regex": 2,
"no-debugger": 2,
"no-dupe-args": 2,
"no-dupe-keys": 2,
"no-duplicate-case": 2,
"no-empty-character-class": 2,
"no-extra-semi": 2,
"no-func-assign": 2,
"no-invalid-regexp": 2,
"no-irregular-whitespace": 2,
"no-negated-in-lhs": 2,
"no-obj-calls": 2,
"no-unreachable": 2,
"use-isnan": 2,
"no-unexpected-multiline": 2,
"curly": 2,
"dot-location": [2, "property"],
"no-alert": 2,
"no-caller": 1,
"no-eval": 1,
"no-multi-spaces": 2,
"no-unused-vars": [
2,
{
"vars": "all",
"args": "none"
}
],
"array-bracket-spacing": [2, "never"],
"block-spacing": [2, "never"],
"brace-style": [
2,
"1tbs",
{
"allowSingleLine": true
}
],
"camelcase": 1,
"comma-spacing": [
2,
{
"before": false,
"after": true
}
],
"comma-style": [2, "last"],
"computed-property-spacing": [2, "never"],
"consistent-this": [2, "self"],
"eol-last": 2,
"func-style": [2, "declaration", { "allowArrowFunctions": true }],
"key-spacing": [
2,
{
"beforeColon": false,
"afterColon": true
}
],
"keyword-spacing": 2,
"lines-around-comment": [
2,
{
"beforeBlockComment": true,
"beforeLineComment": false,
"allowBlockStart": true
}
],
"linebreak-style": [2, "unix"],
"new-cap": 2,
"new-parens": 2,
"newline-after-var": [2, "always"],
"no-array-constructor": 2,
"no-inline-comments": 0,
"no-lonely-if": 2,
"no-mixed-spaces-and-tabs": 2,
"no-multiple-empty-lines": [
2,
{
"max": 1
}
],
"no-nested-ternary": 0,
"no-new-object": 2,
"no-spaced-func": 2,
"no-trailing-spaces": 2,
"object-curly-spacing": [2, "always"],
"one-var": [2, "never"],
"quote-props": [2, "as-needed"],
"quotes": [2, "single", "avoid-escape"],
"semi-spacing": 2,
"semi": [2, "always"],
"sort-vars": 2,
"space-before-blocks": 2,
"space-before-function-paren": [
2,
{
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}
],
"space-in-parens": [2, "never"],
"space-infix-ops": 2,
"space-unary-ops": [
2,
{
"words": true,
"nonwords": false
}
],
"prettier/prettier": [
"error",
{
"tabWidth": 2,
"singleQuote": true,
"printWidth": 130,
"trailingComma": "none"
},
{
"usePrettierrc": true
}
]
}
}
6 changes: 6 additions & 0 deletions .prettierrc.js
@@ -0,0 +1,6 @@
module.exports = {
tabWidth: 2,
singleQuote: true,
printWidth: 120,
trailingComma: 'none'
};
2 changes: 1 addition & 1 deletion .testENV
@@ -1,5 +1,5 @@

TRAVELLING_DATABASE_URL=postgres://postgres@localhost/travelling
TRAVELLING_DATABASE_URL=postgres://postgres@localhost/travelling-test
NODE_TLS_REJECT_UNAUTHORIZED=0


Expand Down

0 comments on commit 74f9001

Please sign in to comment.