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
| " Must come first because it changes other options | |
| set nocompatible | |
| " [vim-plug] Load plugins | |
| call plug#begin() | |
| Plug 'dracula/vim', { 'as': 'dracula' } | |
| Plug 'junegunn/vim-easy-align' | |
| Plug 'pangloss/vim-javascript' | |
| Plug 'mxw/vim-jsx' | |
| Plug 'tpope/vim-bundler' |
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
| { | |
| "above": "The {{field}} should be above {{argument.0}}.", | |
| "accepted": "The {{field}} should have been accepted", | |
| "after": "The {{field}} should be a date after {{argument.0}}", | |
| "after_offset_of": "The {{field}} should be after {{argument.0}} {{argument.1}} from today’s date", | |
| "alpha": "The {{field}} should contain letters only", | |
| "alpha_numeric": "The {{field}} should contain letters and numbers only", | |
| "array": "The {{field}} should be an ARRAY.", | |
| "before": "The {{field}} should be a date before {{argument.0}}.", | |
| "before_offset_of": "The {{field}} should be before {{argument.0}} {{argument.1}} from today’s date", |
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
| // Future versions of Hyper may add additional config options, | |
| // which will not automatically be merged into this file. | |
| // See https://hyper.is#cfg for all currently supported options. | |
| module.exports = { | |
| config: { | |
| // choose either `'stable'` for receiving highly polished, | |
| // or `'canary'` for less polished but more frequent updates | |
| updateChannel: 'stable', |
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
| { | |
| "feed": [ | |
| { | |
| "id": 1, | |
| "image": "https://rocketseat-cdn.s3-sa-east-1.amazonaws.com/instagram-clone/1.jpeg", | |
| "small": "https://rocketseat-cdn.s3-sa-east-1.amazonaws.com/instagram-clone/small/1.jpeg", | |
| "aspectRatio": 0.834, | |
| "description": "Working hard at Rocketseat!", | |
| "authorId": 1 | |
| }, |
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
| export function loadLists() { | |
| return [ | |
| { | |
| title: 'Tarefas', | |
| creatable: true, | |
| cards: [ | |
| { | |
| id: 1, | |
| content: 'Estudar módulo 01 de NodeJS', | |
| labels: ['#7159c1'], |
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
| { | |
| "workbench.startupEditor": "newUntitledFile", | |
| "editor.fontSize": 16, | |
| "editor.lineHeight": 1.8, | |
| "javascript.suggest.autoImports": true, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "editor.rulers": [ | |
| 80, | |
| 120 | |
| ], |
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 React, { useRef, useEffect } from "react"; | |
| import Select from "react-select"; | |
| import { useField } from "../../../lib"; | |
| interface Option { | |
| id: string; | |
| title: string; | |
| } |
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
| # If you come from bash you might have to change your $PATH. | |
| # export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| export ANDROID_HOME=~/Android/Sdk | |
| export PATH="$PATH:$ANDROID_HOME/tools" | |
| export PATH="$PATH:$ANDROID_HOME/platform-tools" | |
| # Path to your oh-my-zsh installation. | |
| export ZSH="/Users/diegofernandes/.oh-my-zsh" | |
| export PATH="$PATH:/usr/local/bin" |
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
| module.exports = { | |
| env: { | |
| browser: true, | |
| es6: true, | |
| jest: true, | |
| }, | |
| extends: [ | |
| 'react-app', | |
| 'airbnb', | |
| 'plugin:@typescript-eslint/recommended', |
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
| const podcasts = [ | |
| { | |
| "id": 1, | |
| "title": "RocketCast", | |
| "cover": "https://s3-sa-east-1.amazonaws.com/gonative/cover1.png", | |
| "tracks": [ | |
| { | |
| "id": "0", | |
| "title": "Papercut", | |
| "artist": "Linkin Park", |