Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

switches gatsby theme #5

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
updates queries for tag and category templates
ksmacleod99 committed Jan 2, 2020
commit 47ff5b71c91bddca1c24a75f0ceed278d0bfcfbb
13 changes: 0 additions & 13 deletions .eslintrc.js

This file was deleted.

20 changes: 20 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"extends": ["airbnb", "prettier"],
"plugins": ["react", "jsx-a11y", "import"],
"rules": {
"react/prefer-stateless-function": "off",
"react/prop-types": "off",
"react/no-danger": "off",
"jsx-a11y/anchor-is-valid": [ "error", {
"components": [ "Link" ],
"specialLink": [ "hrefLeft", "hrefRight", "to" ],
"aspects": [ "noHref", "invalidHref", "preferButton" ]
}]
},
"settings": {
"import/core-modules": []
},
"env": {
"browser": true
}
}
38 changes: 16 additions & 22 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
Comment on lines -5 to -6
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we should keep these


# Runtime data
pids
@@ -23,21 +22,15 @@ coverage
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/
node_modules
jspm_packages

# Optional npm cache directory
.npm
@@ -48,21 +41,22 @@ typings/
# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# next.js build output
.next


.cache/
# Build Files
public/
.cache/

# Gatsby context
.gatsby-context.js
netlify.toml

# mac FS
.DS_Store
.vscode/
# Bundle stats
bundle-stats.json

#etc
.env
5 changes: 0 additions & 5 deletions .huskyrc

This file was deleted.

3 changes: 0 additions & 3 deletions .lintstagedrc

This file was deleted.

3 changes: 0 additions & 3 deletions .prettierrc

This file was deleted.

6 changes: 6 additions & 0 deletions .stylelintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": ["stylelint-config-standard", "stylelint-config-prettier"],
"rules": {
"indentation": 4
}
}
11 changes: 11 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -17,3 +17,14 @@ Do you want to write a blog post for us, but have no ideas? We have ideas for yo
- How to use Slack
- Resume tips
- What do I need to know to get my first dev job?

## To-Do's
- Configure SEO Component
- Configure Disqus Component
- Comfigure Social Media Components
- omg someone make this stupid thing pretty
- Add Cypress.io
- Do something with theme.ui
- Hero images for blog posts
- Component that pulls correct author info from Contentful
- Configure Google Analytics (or remove?)
Loading