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
| root = true | |
| [*] | |
| end_of_line = lf | |
| indent_style = space | |
| indent_size = 2 | |
| charset = utf-8 | |
| trim_trailing_whitespace = true | |
| insert_final_newline = true |
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
| // ReactJS with Redux | |
| import Reactotron from 'reactotron-react-js'; | |
| import { reactotronRedux } from 'reactotron-redux'; | |
| if (process.env.NODE_ENV === 'development') { | |
| const tron = Reactotron.configure() | |
| .use(reactotronRedux()) | |
| .connect(); | |
| tron.clear(); |
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 { createStore } from 'redux'; | |
| import rootReducer from './modules/rootReducer'; | |
| const enhancer = | |
| process.env.NODE_ENV === 'development' ? console.tron.createEnhancer() : null; | |
| const store = createStore(rootReducer, enhancer); | |
| export default store; |
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
| [user] | |
| email = andalvalmeida@gmail.com | |
| name = André Almeida | |
| [core] | |
| editor = vim | |
| ~/.gitignore_global | |
| [push] | |
| default = current |
OlderNewer