-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1066dbc
Showing
10 changed files
with
110 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v6.13.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
Empty file.