This file contains 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 blacklist = [ | |
'Brianna', | |
'Lexi', | |
'Sophia', | |
'Violet', | |
'Emily' | |
]; | |
function like() { | |
const buttons = document.querySelectorAll("button.button"); |
This file contains 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
" A minimal vimrc for new vim users to start with. | |
" | |
" Referenced here: http://vimuniversity.com/samples/your-first-vimrc-should-be-nearly-empty | |
" | |
" Original Author: Bram Moolenaar <[email protected]> | |
" Made more minimal by: Ben Orenstein | |
" Modified by : Ben McCormick | |
" Last change: 2014 June 8 | |
" | |
" To use it, copy it to |
This file contains 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
{ | |
"singleQuote": true, | |
"tabWidth": 2, | |
"trailingComma": "none", | |
"arrowParens": "avoid" | |
} |
This file contains 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
Show hidden characters
{ | |
"compilerOptions": { | |
"baseUrl": "./src" | |
} | |
} |
This file contains 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
{ | |
"env": { | |
"browser": true, | |
"es6": true, | |
"node": true | |
}, | |
"extends": [ | |
"eslint:recommended", | |
"plugin:prettier/recommended", | |
"plugin:react/recommended", |
This file contains 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 { compose, createStore as reduxCreateStore } from 'redux'; | |
const reducer = state => { | |
return state; | |
}; | |
const initialState = {}; | |
const windowGlobal = typeof window !== 'undefined' && window; | |
const devtools = | |
process.env.NODE_ENV === 'development' && windowGlobal.devToolsExtension |
This file contains 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
{ | |
"devDependencies": { | |
"import-sort-cli": "^6.0.0", | |
"import-sort-style-react": "^5.1.0", | |
}, | |
"scripts": { | |
"sort-imports": "./node_modules/import-sort-cli/lib/index.js --write ./src/**/*.js" | |
}, | |
"importSort": { | |
".js": { |
This file contains 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
{ | |
"dependencies": { | |
"babel-plugin-styled-components": "^1.10.7", | |
"prop-types": "^15.7.2", | |
"react": "^16.13.1", | |
"react-dom": "^16.12.0", | |
"react-helmet": "^5.2.1", | |
"react-responsive": "^8.0.3", | |
"react-spring": "^8.0.27", | |
"react-typography": "^0.16.19", |
This file contains 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 x = document.createElement("div"); | |
x.style.height = "1px"; | |
x.style.backgroundColor = "red"; | |
x.style.zIndex = 100000; | |
x.style.position = "fixed"; | |
x.style.top = "0px"; | |
x.style.left = "0px"; | |
document.body.appendChild(x); |
OlderNewer