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
Show file tree
Hide file tree
Changes from all commits
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
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
Expand All @@ -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
Expand All @@ -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
}
}
12 changes: 12 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,15 @@ 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?)
- remove netlify modules
19 changes: 1 addition & 18 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,7 @@
<div align="center">
<br />
<a href="https://operationcode.org">
<img
alt="Operation Code Hacktoberfest Banner"
src="https://operation-code-assets.s3.us-east-2.amazonaws.com/operation_code_hacktoberfest_2019.jpg"
>
</a>
<br />
<br />
</div>

# 🎃 Hacktoberfest 🎃

[All the details you need](https://github.com/OperationCode/START_HERE/blob/master/README.md#-hacktoberfest-) before participating with us.

<br />

# Operation Code Blog

Hello! We are starting to collect blog posts for the Operation Code blog so we can build a backlog of content. We want to welcome all kinds of contributors, so if you have a blog post you would like to see on whatever blogging platform we use, read below.
Want to contribute? [Start Here!](https://github.com/OperationCode/START_HERE/blob/master/README.md)
[Need Ideas?](https://github.com/OperationCode/blog/blob/master/CONTRIBUTING.md#available-topics)

## How To Contribute
Expand Down
Loading