Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonlemay committed Jan 19, 2017
0 parents commit cb15b57
Show file tree
Hide file tree
Showing 73 changed files with 5,332 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"presets": [
"es2015",
"stage-0",
"react"
],
"plugins": [
"add-module-exports"
],
"env": {
"production": {
"presets": [
"react-optimize"
],
"plugins": [
"babel-plugin-dev-expression"
]
},
"development": {
"presets": [
"react-hmre"
]
},
"test": {
"plugins": [
[
"webpack-loaders",
{
"config": "webpack.config.test.js",
"verbose": false
},
"transform-flow-strip-types"
]
]
}
}
}
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
root = true

[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
main.js
50 changes: 50 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true,
"mocha": true,
"node": true
},
"rules": {
"arrow-parens": [
"error",
"as-needed"
],
"consistent-return": "off",
"comma-dangle": "off",
"no-use-before-define": "off",
"import/no-unresolved": [
"error",
{
"ignore": [
"electron"
]
}
],
"import/no-extraneous-dependencies": "off",
"react/jsx-no-bind": "off",
"react/jsx-filename-extension": [
"error",
{
"extensions": [
".js",
".jsx"
]
}
],
"react/prefer-stateless-function": "off",
"generator-star-spacing": "off"
},
"plugins": [
"import",
"react"
],
"settings": {
"import/resolver": {
"webpack": {
"config": "webpack.config.eslint.js"
}
}
}
}
Empty file added .flowconfig
Empty file.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
3 changes: 3 additions & 0 deletions .gitconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[filter "tabspace"]
smudge = unexpand --tabs=4 --first-only
clean = expand --tabs=4 --initial
43 changes: 43 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# IDE
.idea

# Logs
logs
*.log

# Runtime data
pids
*.pid
*.seed

# 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

# node-waf configuration
.lock-wscript

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

# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules

# OSX
.DS_Store

# App packaged
dist
release
main.js
main.js.map
Tempora-*

# VsCode
.vscode/settings.json
Loading

0 comments on commit cb15b57

Please sign in to comment.