Skip to content

Commit

Permalink
feat(✨): Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
infiniteluke committed Nov 2, 2017
1 parent 032174e commit 106ef30
Show file tree
Hide file tree
Showing 26 changed files with 10,042 additions and 63 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
[
{
"login": "infiniteluke",
"id": 1127238,
"avatar_url": "https://avatars0.githubusercontent.com/u/1127238?s=24",
"gravatar_id": "",
"url": "https://api.github.com/users/infiniteluke",
"html_url": "https://github.com/infiniteluke",
"followers_url": "https://api.github.com/users/infiniteluke/followers",
"following_url": "https://api.github.com/users/infiniteluke/following{/other_user}",
"gists_url": "https://api.github.com/users/infiniteluke/gists{/gist_id}",
"starred_url": "https://api.github.com/users/infiniteluke/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/infiniteluke/subscriptions",
"organizations_url": "https://api.github.com/users/infiniteluke/orgs",
"repos_url": "https://api.github.com/users/infiniteluke/repos",
"events_url": "https://api.github.com/users/infiniteluke/events{/privacy}",
"received_events_url": "https://api.github.com/users/infiniteluke/received_events",
"type": "User",
"site_admin": false,
"name": "Luke Herrington",
"company": "Four Kitchens",
"blog": "",
"location": "United States",
"email": null,
"hireable": null,
"bio": "I build multi-channel publishing systems and web applications at @fourkitchens.",
"public_repos": 39,
"public_gists": 1,
"followers": 19,
"following": 56,
"created_at": "2011-10-14T00:22:53Z",
"updated_at": "2017-10-15T23:18:57Z"
},
{
"login": "flipactual",
"id": 1306968,
"avatar_url": "https://avatars0.githubusercontent.com/u/1306968?s=24",
"gravatar_id": "",
"url": "https://api.github.com/users/flipactual",
"html_url": "https://github.com/flipactual",
"followers_url": "https://api.github.com/users/flipactual/followers",
"following_url": "https://api.github.com/users/flipactual/following{/other_user}",
"gists_url": "https://api.github.com/users/flipactual/gists{/gist_id}",
"starred_url": "https://api.github.com/users/flipactual/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/flipactual/subscriptions",
"organizations_url": "https://api.github.com/users/flipactual/orgs",
"repos_url": "https://api.github.com/users/flipactual/repos",
"events_url": "https://api.github.com/users/flipactual/events{/privacy}",
"received_events_url": "https://api.github.com/users/flipactual/received_events",
"type": "User",
"site_admin": false,
"name": "Flip",
"company": null,
"blog": "https://www.stupid.cool",
"location": "Austin, TX",
"email": null,
"hireable": true,
"bio": null,
"public_repos": 21,
"public_gists": 1,
"followers": 33,
"following": 15,
"created_at": "2012-01-05T15:20:07Z",
"updated_at": "2017-10-14T03:34:44Z"
}
]
26 changes: 26 additions & 0 deletions .emdaer/README.emdaer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# <!--emdaer-p
- '@emdaer/plugin-value-from-package'
- value: name
--> · <!--emdaer-p
- '@emdaer/plugin-shields'
- shields:
- alt: 'Travis'
image: 'travis/emdaer/emdaer.svg'
link: 'https://travis-ci.org/emdaer/emdaer.github.io/'
style: 'flat-square'
- alt: 'Documented with emdaer'
image: 'badge/📓-documented%20with%20emdaer-F06632.svg'
link: 'https://github.com/emdaer/emdaer'
style: 'flat-square'
-->
<!--emdaer-p
- '@emdaer/plugin-value-from-package'
- value: description
-->
<!--emdaer-p
- '@emdaer/plugin-contributors-details-github'
-->
<!--emdaer-t
- '@emdaer/transform-smartypants'
- options: q
-->
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
26 changes: 26 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
module.exports = {
parser: 'babel-eslint',
plugins: ['jest', 'prettier'],
env: { 'jest/globals': true },
extends: ['airbnb', 'prettier', 'prettier/react'],
settings: {
'import/core-modules': [
'react',
'prop-types',
'react-helmet',
'styled-components',
],
},
rules: {
'import/no-extraneous-dependencies': [
'error',
{ devDependencies: ['scripts/**'] },
],
'prettier/prettier': ['error', { trailingComma: 'es5', singleQuote: true }],
'import/no-dynamic-require': ['off'],
'global-require': ['off'],
'no-new': ['off'],
'react/jsx-filename-extension': ['off'],
'jsx-a11y/anchor-is-valid': ['off'],
},
};
41 changes: 41 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!--
Thanks for your interest in the project. We appreciate bugs filed and PRs submitted!
Please make sure that you are familiar with and follow the Code of Conduct for
this project (found in the CODE_OF_CONDUCT.md file).
Please fill out this template with all the relevant information so we can
understand what's going on and fix the issue.
-->

- `emdaer` version:
- `plugin-relevant-plugin-name` version (multiple if relevant):
- `node` version:
- `npm` (or `yarn`) version:

Contents of your *.emdaer.md file:

```md

```

What you did:



What happened:

<!-- Please provide the full error message/screenshots/anything -->

Reproduction repository:

<!--
If possible, please create a repository that reproduces the issue with the
minimal amount of code possible.
-->

Problem description:



Suggested solution:
32 changes: 32 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!--
Thanks for your interest in the project. We appreciate bugs filed and PRs submitted!
Please make sure that you are familiar with and follow the Code of Conduct for
this project (found in the CODE_OF_CONDUCT.md file).
Also, please make sure you're familiar with and follow the instructions in the
contributing guidelines (found in the CONTRIBUTING.md file).
Please fill out the information below to expedite the review and (hopefully)
merge of your pull request!
-->

<!-- What changes are being made? (What feature/bug is being fixed here?) -->
**What**:

<!-- Why are these changes necessary? -->
**Why**:

<!-- How were these changes implemented? -->
**How**:

<!-- Have you done all of these things? -->
**Checklist**:
<!-- add "N/A" to the end of each line that's irrelevant to your changes -->
<!-- to check an item, place an "x" in the box like so: "- [x] Documentation" -->
- [ ] Documentation
- [ ] Tests
- [ ] Ready to be merged <!-- In your opinion, is this ready to be merged as soon as it's reviewed? -->
- [ ] Added myself to AUTHORS <!-- this is optional, see the contributing guidelines for instructions -->

<!-- Feel free to add additional comments -->
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@


# Project dependencies
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules
.cache/
# Build directory
public/
yarn-error.log
dist
.tmp
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8
2 changes: 2 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Luke Herrington <infiniteluke>
Flip <flipactual>
26 changes: 26 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
export FORCE_COLOR = true

precommit: lint-staged emdaer
commitmsg: commitlint

build:
./node_modules/.bin/gatsby build
develop:
./node_modules/.bin/gatsby develop --verbose

ci: commitlint-ci bootstrap lint

emdaer:
./node_modules/.bin/emdaer
git add *.md
git add .emdaer/.offline
lint:
./node_modules/.bin/eslint .
lint-staged:
./node_modules/.bin/lint-staged
commitlint:
./node_modules/.bin/commitlint -e ${GIT_PARAMS}
commitlint-ci:
./node_modules/.bin/commitlint --from="${TRAVIS_BRANCH}" --to="${TRAVIS_COMMIT}"
./node_modules/.bin/commitlint --from=${TRAVIS_COMMIT}

21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!--
This file was generated by emdaer
Its template can be found at .emdaer/README.emdaer.md
-->

# emdaer.github.io · [![Travis](https://img.shields.io/travis/emdaer/emdaer.svg?style=flat-square)](https://travis-ci.org/emdaer/emdaer.github.io/) [![Documented with emdaer](https://img.shields.io/badge/📓-documented%20with%20emdaer-F06632.svg?style=flat-square)](https://github.com/emdaer/emdaer)
emdaer website
<details>
<summary><strong>Contributors</strong></summary><br />
<a title="I build multi-channel publishing systems and web applications at @fourkitchens." href="https://github.com/infiniteluke">
<img align="left" src="https://avatars0.githubusercontent.com/u/1127238?s=24" />
</a>
<strong>Luke Herrington</strong>
<br /><br />
<a href="https://github.com/flipactual">
<img align="left" src="https://avatars0.githubusercontent.com/u/1306968?s=24" />
</a>
<strong>Flip</strong>
<br /><br />
</details>
Binary file removed assets/ermahgerd.jpg
Binary file not shown.
Binary file removed assets/sticker-classic.png
Binary file not shown.
Binary file removed assets/sticker-retro.png
Binary file not shown.
6 changes: 6 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
extends: ['@commitlint/config-angular'],
rules: {
'header-max-length': [2, 'always', 75],
},
};
6 changes: 6 additions & 0 deletions gatsby-config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
siteMetadata: {
title: `Gatsby Default Starter`,
},
plugins: [`gatsby-plugin-react-helmet`],
};
63 changes: 0 additions & 63 deletions index.html

This file was deleted.

3 changes: 3 additions & 0 deletions lint-staged.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
'*.js': ['eslint --fix', 'prettier --write', 'git add'],
};
Loading

0 comments on commit 106ef30

Please sign in to comment.