This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Reactotron from 'reactotron-react-native'; | |
| import { reactotronRedux } from 'reactotron-redux'; | |
| import reactotronSaga from 'reactotron-redux-saga'; | |
| import AsyncStorage from '@react-native-community/async-storage'; | |
| if (__DEV__) { | |
| const tron = Reactotron.setAsyncStorageHandler(AsyncStorage) | |
| .configure({ host: 'YOUR IP' }) | |
| .use(reactotronRedux()) | |
| .use(reactotronSaga()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| yarn json-server --host ip api.json -p 3333 | |
| ** Don´t forget to change the IP |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "lint-commit", | |
| "version": "1.0.0", | |
| "main": "index.js", | |
| "author": "Raphael Barreto <tnt.raphael@gmail.com>", | |
| "scripts": { | |
| "commit": "git-cz" | |
| }, | |
| "license": "MIT", | |
| "husky": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "hooks": { | |
| "pre-commit": "lint-staged", | |
| "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * text=auto eol=lf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "actions": | |
| [ | |
| { | |
| "command": "closePane", | |
| "keys": "ctrl+w" | |
| }, | |
| { | |
| "command": |