Skip to content

Commit

Permalink
Merge 586c254 into 60bf51b
Browse files Browse the repository at this point in the history
  • Loading branch information
calintamas committed Oct 30, 2021
2 parents 60bf51b + 586c254 commit d7808f9
Show file tree
Hide file tree
Showing 90 changed files with 4,315 additions and 4,674 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
babel.config.js
.eslintrc.js
6 changes: 3 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module.exports = {
extends: ['backpacker-react'],
root: true,
extends: ['backpacker-react-ts'],
rules: {
'import/no-extraneous-dependencies': 'off',
'react/sort-comp': 'off',
'no-underscore-dangle': 'warn'
'@typescript-eslint/explicit-module-boundary-types': 'off'
}
};
23 changes: 8 additions & 15 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: monthly
time: "03:00"
open-pull-requests-limit: 10
reviewers:
- calintamas
ignore:
- dependency-name: husky
versions:
- "> 3.1.0"
- dependency-name: husky
versions:
- ">= 4.a, < 5"
- package-ecosystem: npm
directory: '/'
schedule:
interval: monthly
time: '03:00'
open-pull-requests-limit: 10
reviewers:
- calintamas
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ jobs:

- name: Setup React Native environment
run: |
yarn add react-native@0.63.4
yarn add react@16.13.1
yarn add react@17.0.1
yarn add react-native@0.64.2
- name: Run tests
run: yarn test --coverage
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
node_modules
.idea
coverage
lib
6 changes: 1 addition & 5 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
__tests__
coverage
.eslintrc.js
.prettierrc.js
success-toast.gif
**/__tests__/*
8 changes: 3 additions & 5 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module.exports = {
trailingComma: 'none',
tabWidth: 2,
singleQuote: true,
bracketSameLine: true,
jsxSingleQuote: true,
jsxBracketSameLine: true,
arrowParens: 'always'
singleQuote: true,
trailingComma: 'none'
};
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

Headers are one of:

- `Added`, `Changed`, `Removed` or `Fixed`.
- `Added`, `Changed`, `Removed`, `Fixed` or `Breaking`.

## [1.6.0]

Expand Down
268 changes: 0 additions & 268 deletions README.md

This file was deleted.

Loading

0 comments on commit d7808f9

Please sign in to comment.