Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"extends": "callstack-io",
"extends": "@callstack",
"rules": {
"global-require": 0,
"flowtype/no-weak-types": 0,
"strict": [0, "global"],
"no-unused-vars": ["error", { "argsIgnorePattern": "^_" }]
"no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
"react-native/no-raw-text": 0
}
}
7 changes: 1 addition & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- '10'
- '12'
- '8'
before_install:
- yarn global add greenkeeper-lockfile@1
Expand All @@ -9,11 +9,6 @@ before_script: greenkeeper-lockfile-update
script:
- yarn lint && yarn typecheck && yarn test
after_script: greenkeeper-lockfile-upload
jobs:
include:
- stage: release
node_js: '8'
os: linux
cache:
yarn: true
directories:
Expand Down
1 change: 0 additions & 1 deletion extend-expect.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* global expect */
const { toMatchDiffSnapshot } = require('./build/');

expect.extend({ toMatchDiffSnapshot });
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"eslint": "^5.15.3",
"eslint-config-callstack-io": "^1.1.1",
"eslint": "^6.6.0",
"@callstack/eslint-config": "^7.1.0",
"flow-bin": "^0.111.1",
"jest": "^24.0.0",
"react": "^16.7.0",
Expand Down
Loading