Skip to content

Commit

Permalink
Merge pull request #807 from Ignitus/develop
Browse files Browse the repository at this point in the history
Master > Develop
  • Loading branch information
Ignitus-bot authored May 2, 2020
2 parents 84a5028 + 007dcc6 commit ffde53a
Show file tree
Hide file tree
Showing 318 changed files with 9,676 additions and 20,029 deletions.
50 changes: 0 additions & 50 deletions .eslintrc

This file was deleted.

57 changes: 57 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"env": {
"browser": true,
"es6": true,
"jest": true
},
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json",
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"settings": {
"import/extensions": [".js",".jsx",".ts",".tsx"],
"import/parsers": {
"@typescript-eslint/parser": [".ts",".tsx"]
},
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
},
"plugins": [
"react",
"@typescript-eslint"
],
"extends": [
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"airbnb",
"prettier/react",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"rules": {
"import/extensions": "off",
"no-param-reassign": "off",
"react/jsx-filename-extension": "off",
"react/jsx-fragments": "off",
"import/prefer-default-export": "off",
"react/jsx-props-no-spreading": "off",
"import/no-named-default": "off",
"react/prop-types": "off",
"jsx-a11y/aria-role": "warn",
"import/no-extraneous-dependencies": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-inferrable-types": "off"
}
}
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,6 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*

.docz
.docz

.eslintcache
11 changes: 0 additions & 11 deletions .hound.yml

This file was deleted.

3 changes: 0 additions & 3 deletions .jshintrc

This file was deleted.

7 changes: 3 additions & 4 deletions .prettierrc → .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
{
module.exports = {
"arrowParens": "avoid",
"bracketSpacing": false,
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"jsxBracketSameLine": false,
"printWidth": 80,
"proseWrap": "preserve",
"requirePragma": false,
Expand All @@ -20,4 +19,4 @@
}
}
]
}
}
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
language: node_js
node_js:
- "8"
- "8"
install:
- npm install
scripts:
- npm run ci
after_success:
- bash <(curl -s https://codecov.io/bash) -e TRAVIS_NODE_VERSION
- bash <(curl -s https://codecov.io/bash) -e TRAVIS_NODE_VERSION
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ https://github.com/Ignitus/Ignitus-client/wiki/About
We also plan to introduce some new technologies in the future such as.
- [GraphQl](https://graphql.org/) - A query language for your API.
- [Relay](https://relay.dev/) - The production-ready GraphQL client for React.
- Microservices in [Golang](https://golang.org/) - Go is a statically typed, compiled programming language
- Microservices in [Golang](https://golang.org/) - Go is a statically typed, compiled programming language.

## Contributing.

Expand Down
Loading

0 comments on commit ffde53a

Please sign in to comment.