Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding the dev-launcher #10

Merged
merged 21 commits into from
Jun 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 1 addition & 37 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -1,40 +1,4 @@
extends: "@first-lego-league"

parserOptions:
sourceType: script

#rules:
# arrow-parens:
# - warn
# - as-needed
# - requireForBlockBody: false
# no-shadow: warn
# no-var: warn
# object-curly-spacing: [ warn, always ]
# prefer-arrow-callback: warn
# prefer-const: warn
# strict: [ warn, global ]
#
# import/newline-after-import: warn
# import/no-absolute-path: warn
# import/no-dynamic-require: warn
# import/no-extraneous-dependencies: warn
# import/no-mutable-exports: warn
# import/order:
# - warn
# - groups:
# - [ builtin, external ]
# - [ sibling, index ]
# - parent
# newlines-between: always-and-inside-groups
#
# node/exports-style:
# - warn
# - exports
# node/no-unsupported-features: warn
# node/shebang: warn
#
# promise/catch-or-return: warn
# promise/no-callback-in-promise: warn
# promise/no-native: warn
# promise/no-return-wrap: warn
sourceType: module
44 changes: 41 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,24 @@
# Project Specific

/data
/public
/module-config.json


# Created by https://www.gitignore.io/api/node
# Edit at https://www.gitignore.io/?templates=node

### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
Expand All @@ -20,7 +35,7 @@ coverage
# nyc test coverage
.nyc_output

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

# Bower dependency directory (https://bower.io/)
Expand All @@ -29,14 +44,14 @@ bower_components
# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
# TypeScript v1 declaration files
typings/

# Optional npm cache directory
Expand All @@ -56,4 +71,27 @@ typings/

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache

# next.js build output
.next

# nuxt.js build output
.nuxt

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# End of https://www.gitignore.io/api/node
Loading