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
#!/bin/bash | |
YELLOW=$'\e[1;33m' | |
GREEN=$'\e[1;32m' | |
NOCOLOR=$'\e[0m' | |
read -r -p "Please enter the type of content you wish to export - pullRequest|issue|discussion (default = pullRequest): " type | |
type=${type:-pullRequest} | |
read -r -p "Please enter the repository owner: " owner | |
owner=${owner:-${owner}} |
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
{ | |
"files.exclude": { | |
"**/wp-admin": true, | |
"**/wp-includes": true, | |
"**/upgrade": true, | |
"**/uploads": true, | |
"**/wp-content/index.php": true, | |
"**/wp-content/plugins/akismet": true, | |
"**/wp-content/plugins/debug-bar": true, | |
"**/wp-content/plugins/debug-bar-console": 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
{ | |
"name": "project-name", | |
"version": "1.0.0", | |
"description": "", | |
"author": "", | |
"license": "GPL-2.0-or-later", | |
"main": "index.js", | |
"scripts": { | |
"env": "WP_ENV_HOME=\"wp-env\" wp-env", | |
"env:logs": "npm run env logs", |
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 in folder (github) | |
# Conditionally indicate if in github repo. Time in 24-hour format is on right. | |
function collapse_pwd { | |
echo $(pwd | sed -e "s,^$HOME,~,") | |
} | |
function prompt_char { | |
echo -n "%{$fg_bold[red]%}➜%{$reset_color%} " | |
} | |
PROMPT=' |
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
{ | |
"useTabs": true, | |
"tabWidth": 4, | |
"singleQuote": true, | |
"printWidth": 100 | |
} |
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: { | |
updateChannel: 'canary', | |
// default font size in pixels for all tabs | |
fontSize: 14, | |
windowSize: [1080, 720], |
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
*.json | |
README.md |
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
code --install-extension aaron-bond.better-comments | |
code --install-extension AndrsDC.base16-themes | |
code --install-extension andys8.jest-snippets | |
code --install-extension anteprimorac.html-end-tag-labels | |
code --install-extension bmewburn.vscode-intelephense-client | |
code --install-extension bradgashler.htmltagwrap | |
code --install-extension bradlc.vscode-tailwindcss | |
code --install-extension burkeholland.simple-react-snippets | |
code --install-extension christian-kohler.npm-intellisense | |
code --install-extension christian-kohler.path-intellisense |
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, | |
"extends": [ "react-app", "plugin:jsx-a11y/recommended" ], | |
"plugins": [ "jsx-a11y" ], | |
"parser": "babel-eslint", | |
"parserOptions": { | |
"ecmaVersion": 8, | |
"ecmaFeatures": { | |
"experimentalObjectRestSpread": true, | |
"impliedStrict": 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
.widget_recent_comments a, .widget_recent_entries a, body, button, input, select, textarea { | |
color: #F9FFEE; | |
} | |
.entry-author .author-title, .entry-title, .entry-title a, .entry-title a:visited, .site-posted-on strong, .site-title, .site-title a, .site-title a:visited, .entry-title a:hover, .site-title a:hover, h1, h2, h3, h4, h5, h6, .page-header:not(.page-header-light) h1, .comment .comment-meta .comment-author .fn { | |
color: #EFBB35; | |
} | |
.site-title a { | |
color: #EFBB35 !important; | |
} | |
.site-description, .social-navigation li a, .site-header .menu-toggle { |
NewerOlder