Skip to content

Commit

Permalink
Merge pull request #32 from coder-mind-project/develop
Browse files Browse the repository at this point in the history
Version 1.1.0 - Alpha version
  • Loading branch information
allanalves23 authored Aug 16, 2020
2 parents d58d6b3 + 84bf7b1 commit 15a4064
Show file tree
Hide file tree
Showing 74 changed files with 786 additions and 1,443 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
build
25 changes: 21 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,38 @@
{
"root": true,
"env": {
"browser": true,
"commonjs": true,
"es2020": true
},
"extends": [
"standard"
"standard",
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 11
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"no-throw-literal": "off",
"no-throw-literal": "error",
"no-unused-vars": "off",
"space-before-function-paren": "off",
"no-console": "error",
"no-var": "error",
"no-param-reassign": "error"
"no-undef": "off",
"no-param-reassign": "error",
"semi-spacing": "error",
"semi": [
2,
"always"
],
"curly": "off",
"no-new": "off",
"@typescript-eslint/no-non-null-assertion": "off"
}
}
}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@

/node_modules
/.vscode
/build
/build
npm-debug.log
4 changes: 2 additions & 2 deletions .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"endOfLine": "auto",
"printWidth": 120,
"requirePragma": false,
"semi": false,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false,
"parser": "babel"
"parser": "babel-ts"
}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ ADD . .
RUN npm install
RUN npm run build

EXPOSE 3002
EXPOSE 3010

CMD ["node", "./build/index.js"]
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
![Development status](http://img.shields.io/badge/status-under%20development-yellow)
![contributions-welcome](https://img.shields.io/badge/contributions-welcome-brightgreen)
![license-BS3](https://img.shields.io/badge/license-BSD%203-green)
[![JavaScript Style Guide](https://cdn.rawgit.com/standard/standard/master/badge.svg)](https://github.com/standard/standard)

## Contact information:

Expand Down
6 changes: 0 additions & 6 deletions nodemon.json

This file was deleted.

Loading

0 comments on commit 15a4064

Please sign in to comment.