Skip to content

Commit

Permalink
Release 7.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
il1tvinov committed Oct 30, 2020
1 parent 3c32569 commit ebe0b3a
Show file tree
Hide file tree
Showing 239 changed files with 70,408 additions and 11,772 deletions.
2 changes: 0 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ services:
depends_on:
- redis
- postgresql
volumes:
- ./nostradamus/assets/:/home/app/nostradamus/assets/

nostradamus-frontend:
container_name: nostradamus-frontend
Expand Down
93 changes: 93 additions & 0 deletions frontend/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
{
"env": {
"browser": true,
"es6": true,
"es2017": true
},
"extends": [
"eslint:recommended",
"airbnb",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"prettier",
"prettier/react"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"tsconfigRootDir": "."
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"],
"moduleDirectory": ["node_modules", "src/"]
}
}
},
"plugins": ["@typescript-eslint"],
"rules": {
"camelcase": "off",
"no-shadow": "off",
"no-use-before-define": "off",
"lines-between-class-members": [
"error",
"always",
{
"exceptAfterSingleLine": true
}
],
"no-useless-catch": "off",
"no-unused-vars": "off",
"no-undef": "off",
"no-param-reassign": "off",
"import/extensions": "off",
"no-unused-expressions": "off",
"class-methods-use-this": "off",
"no-restricted-globals": "off",
"no-case-declarations": "off",
"default-case": "off",
"consistent-return": "off",
"prefer-destructuring": "off",
"max-classes-per-file": "off",
"no-restricted-syntax": "off",
"import/prefer-default-export": "off",
"react/jsx-filename-extension": [
1,
{
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
],
"react/destructuring-assignment": "off",
"react/no-unescaped-entities": "off",
"react/no-array-index-key": "off",
"react/state-in-constructor": "off",
"react/sort-comp": "off",
"react/static-property-placement": "off",
"react/button-has-type": "off",
"react/prefer-stateless-function": "off",
"react/no-access-state-in-setstate": "off",
"react/require-default-props": "off",
"jsx-a11y/label-has-associated-control": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-static-element-interactions": "off",
"jsx-a11y/no-noninteractive-element-interactions": "off",
"jsx-a11y/no-noninteractive-tabindex": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/require-await": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/no-unused-expressions": "off"
}
}
4 changes: 4 additions & 0 deletions frontend/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 100,
"useTabs": true
}
7 changes: 4 additions & 3 deletions frontend/ROADMAP.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# Roadmap of Nostradamus GUI project

## Future improvements
## Future improvements

- continue refactoring
- remaking api interactions
- code style
- e2e testing

## Future features
- advanced forms validation
## Future features

- advanced forms validation
Loading

0 comments on commit ebe0b3a

Please sign in to comment.