Skip to content

Commit

Permalink
(init)
Browse files Browse the repository at this point in the history
  • Loading branch information
phillipalexander committed Jul 31, 2020
0 parents commit 1066dbc
Show file tree
Hide file tree
Showing 10 changed files with 110 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/**
* These rules enforce the Hack Reactor Style Guide
*
* Visit this repo for more information:
* https://github.com/reactorcore/eslint-config-hackreactor
*/

module.exports = {
extends: './node_modules/eslint-config-hackreactor/index.js'
};
26 changes: 26 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
## MAC files ##
.DS_Store

## NPM ##
npm
npm-debug.log
node_modules/

pids
*.pid
logs
*.log

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

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Compiled Dirs (http://nodejs.org/api/addons.html)
build/
dist/

1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v6.13.0
13 changes: 13 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"editor.lightbulb.enabled": false,
"editor.parameterHints.enabled": false,
"editor.renderWhitespace": "all",
"editor.snippetSuggestions": "none",
"editor.tabSize": 2,
"editor.wordWrap": "on",
"emmet.showExpandedAbbreviation": "never",
"files.trimTrailingWhitespace": true,
"javascript.suggest.enabled": false,
"javascript.updateImportsOnFileMove.enabled": "never",
"javascript.validate.enable": false
}
39 changes: 39 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Project Name

> Project description
## Related Projects

- https://github.com/teamName/repo
- https://github.com/teamName/repo
- https://github.com/teamName/repo
- https://github.com/teamName/repo

## Table of Contents

1. [Usage](#Usage)
1. [Requirements](#requirements)
1. [Development](#development)

## Usage

> Some usage instructions
## Requirements

An `nvmrc` file is included if using [nvm](https://github.com/creationix/nvm).

- Node 6.13.0
- etc

## Development

### Installing Dependencies

From within the root directory:

```sh
npm install -g webpack
npm install
```

4 changes: 4 additions & 0 deletions STYLE-GUIDE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## Style Guide

Refer to the [AirBnb Style Guide](https://github.com/airbnb/javascript).

Empty file added client/.gitkeep
Empty file.
17 changes: 17 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "",
"version": "",
"description": "",
"author": "",
"license": "",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
},
"dependencies": {
},
"devDependencies": {
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor"
}
}
Empty file added public/.gitkeep
Empty file.
Empty file added server/.gitkeep
Empty file.

0 comments on commit 1066dbc

Please sign in to comment.