Skip to content

Commit

Permalink
Merge branch 'master' into topics/new-feature-name
Browse files Browse the repository at this point in the history
  • Loading branch information
shannonbux committed Jan 9, 2018
2 parents 23012dc + 2a1a001 commit 0f0ad28
Show file tree
Hide file tree
Showing 774 changed files with 31,190 additions and 9,233 deletions.
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

33 changes: 10 additions & 23 deletions .eslintrc
Expand Up @@ -9,10 +9,7 @@
"prettier/flowtype",
"prettier/react"
],
"plugins": [
"flowtype",
"react"
],
"plugins": ["flowtype", "react"],
"parserOptions": {
"ecmaVersion": 2016,
"sourceType": "module",
Expand All @@ -25,34 +22,24 @@
"node": true,
"jest": true
},
"globals": {
"spyOn": true
},
"rules": {
"no-console": "off",
"no-inner-declarations": "off",
"valid-jsdoc": "off",
"require-jsdoc": "off",
"quotes": [
"error",
"backtick"
],
"consistent-return": [
"error",
],
"quotes": ["error", "backtick"],
"consistent-return": ["error"],
"arrow-body-style": [
"error",
"as-needed",
{ "requireReturnForObjectLiteral": true }
],
"jsx-quotes": [
"error",
"prefer-double"
],
"semi": [
"error",
"never"
],
"object-curly-spacing": [
"error",
"always"
],
"jsx-quotes": ["error", "prefer-double"],
"semi": ["error", "never"],
"object-curly-spacing": ["error", "always"],
"comma-dangle": [
"error",
{
Expand Down
4 changes: 4 additions & 0 deletions .flowconfig
Expand Up @@ -3,8 +3,12 @@

[ignore]
.*/test/.*
.*/node_modules/documentation/.*
.*/node_modules/typography/.*
.*/node_modules/fbjs/.*
.*/node_modules/react-side-effect/.*
.*/node_modules/styled-components/.*
.*/node_modules/preact/.*
.*/node_modules/jss/.*
.*/www/.*
.*/examples/.*
49 changes: 49 additions & 0 deletions .github/ISSUE_TEMPLATE.md
@@ -0,0 +1,49 @@
<!--
If you're reading this... it means that you want to contribute to the project! Awesome and thanks!
To make it easier for us to help you — please follow the suggested format below (as it makes sense).
Useful Links:
- Documentation: https://www.gatsbyjs.org/docs/
- How to Contribute: https://www.gatsbyjs.org/docs/how-to-contribute/
- Become a Sponsor: https://opencollective.com/gatsby#sponsor
Before opening a new issue, please search existing issues (https://github.com/gatsbyjs/gatsby/issues)
to double-check your issue isn't already known.
-->

## Description

Describe the issue or the enhancement that you want to see.

### Environment

Gatsby version:
Node.js version:
Operating System:

### File contents (if changed):

`gatsby-config.js`: <!-- code block or not changed -->
`package.json`: <!-- code block or not changed -->
`gatsby-node.js`: <!-- code block or not changed -->
`gatsby-browser.js`: <!-- code block or not changed -->
`gatsby-ssr.js`: <!-- code block or not changed -->

### Actual result

What happened.

### Expected behavior

What should happen?

### Steps to reproduce

1\.

2\.

3\.

...
17 changes: 17 additions & 0 deletions .github/stale.yml
@@ -0,0 +1,17 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 180
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 15
# Issues with these labels will never be considered stale
exemptLabels:
- bug
# Label to use when marking an issue as stale
staleLabel: stale?
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: >
This issue has been automatically closed due to inactivity.
8 changes: 6 additions & 2 deletions .gitignore
@@ -1,3 +1,7 @@

packages/*/yarn.lock
packages/*/package-lock.json

# Logs
logs
*.log
Expand Down Expand Up @@ -44,5 +48,5 @@ node_modules/
# IDE specific
.idea/
.vscode/
yarn.lock
package-lock.json

.serverless/
1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

12 changes: 0 additions & 12 deletions .pre-commit.sh

This file was deleted.

5 changes: 3 additions & 2 deletions .prettierrc
@@ -1,4 +1,5 @@
{
"trailingComma": "es5",
"semi": false
"trailingComma": "es5",
"semi": false,
"tabWidth": 2
}
3 changes: 0 additions & 3 deletions .publishrc

This file was deleted.

0 comments on commit 0f0ad28

Please sign in to comment.