Skip to content

Commit

Permalink
Initial commit from gatsby: (https://github.com/EmaSuriano/gatsby-sta…
Browse files Browse the repository at this point in the history
  • Loading branch information
bigdadz committed Jul 15, 2019
0 parents commit d492b41
Show file tree
Hide file tree
Showing 47 changed files with 15,445 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
module.exports = {
extends: ['airbnb', 'prettier'],
rules: {
'react/jsx-filename-extension': 'off',
'react/require-default-props': 'off',
},
parser: 'babel-eslint',
env: {
browser: true,
node: true,
},
};
71 changes: 71 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# 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)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# 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/
public/
.gatsby-context.js
netlify.toml

# mac FS
.DS_Store
.vscode/
3 changes: 3 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
trailingComma: "all"
singleQuote: true
printWidth: 80
24 changes: 24 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
language: node_js

cache:
yarn: true
directories:
- node_modules

notifications:
email: false

node_js:
- 8

install:
- yarn

script:
- yarn build
- yarn lint

branches:
only:
- master
- '/^greenkeeper/.*$/'
51 changes: 51 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Contributing

First off, thank you for considering contributing to Gatsby Mate Starter. With the help of all the contributors this starter is always up to date and free of bugs, resulting in a better application for everybody 😄

Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. In return, they should reciprocate that respect in addressing your issue,
assessing changes, and helping you finalize your pull requests.

## Where do I go from here?

If you've noticed a bug or have a feature request, search the [issue tracker](https://github.com/EmaSuriano/gatsby-starter-mate/issues?q=something) to see if someone else in the community has already created a ticket. If not, go ahead and make one!

## Fork & create a branch

If this is something you think you can fix, then [fork Gatsby Starter Mate](https://help.github.com/articles/fork-a-repo) and create a branch with a descriptive name.

The name of the branch must start with the type of the pull request, followed with a short description of what it's trying to achieve.

```
feat - A new feature.
fix - A bug fix.
docs - Documentation only changes
```

Example: `feat/new-top-bar` or `fix/broken-project-link`

## Setting Up the Code for Local Development

1. Fork the `gatsby-mate-starter` repo on GitHub.
2. Create a branch for local development::

```bash
$ git checkout -b name-of-your-bugfix-or-feature
```

3. Install dependencies

```
$ yarn
```

4. Commit your changes and push your branch to GitHub::

```bash
$ git add .
$ git commit -m "Your detailed description of your changes."
$ git push origin name-of-your-bugfix-or-feature
```

5. Submit a pull request through the GitHub website.

After the pull request is submitted TravisCI is going to run all the automated tasks that ensure a minimium code quality. **This is a mandatory requirement in order to merge your pul request.**
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2018 Emanuel Suriano

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading

0 comments on commit d492b41

Please sign in to comment.