Skip to content

Commit

Permalink
Updates some initial configuration
Browse files Browse the repository at this point in the history
Pins eslint to 2.2.0 - babel/babel-eslint#267
Overrides react/prefer-stateless-functions
  • Loading branch information
stephengfriend committed Mar 6, 2016
1 parent 3aa5611 commit 6a9413c
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 20 deletions.
6 changes: 3 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@
"import/named": 2,
"import/default": 2,
"import/namespace": 2,
"import/export": 2
"import/export": 2,
// Overide Stateless
"react/prefer-stateless-function": 0
},
"globals": {
"after": false,
Expand All @@ -44,5 +46,3 @@
}
}
}


6 changes: 4 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
The MIT License (MIT)

Copyright (c) 2015 Daniel Steigerwald
Copyright (c) 2015 Mike Grabowski
Copyright (c) for portions of project cmsbl are held by Daniel Steigerwald,
2015 and Mike Grabowski, 2015 as part of project Este. All other copyright for
project cmsbl are held by Chesapeake Men's Senior Baseball League, 2015 and
Stephen Friend, 2015.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
1 change: 0 additions & 1 deletion Procfile

This file was deleted.

7 changes: 0 additions & 7 deletions app.json

This file was deleted.

6 changes: 3 additions & 3 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ dependencies:
- "~/docker"
override:
- if [[ -e ~/docker/image.tar ]]; then docker load -i ~/docker/image.tar; fi
- docker build --rm=false -t este/este:latest . # --rm=false https://discuss.circleci.com/t/docker-error-removing-intermediate-container/70/2
- mkdir -p ~/docker; docker save este/este:latest > ~/docker/image.tar
- docker build --rm=false -t cmsbl/cmsbl:latest . # --rm=false https://discuss.circleci.com/t/docker-error-removing-intermediate-container/70/2
- mkdir -p ~/docker; docker save cmsbl/cmsbl:latest > ~/docker/image.tar

test:
override:
- docker run este/este:latest test
- docker run cmsbl/cmsbl:latest test
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
{
"name": "Este",
"name": "cmsbl",
"authors": [
"Daniel Steigerwald"
"Stephen Friend"
],
"description": "Dev stack and starter kit for React universal web apps",
"description": "The source code for https://chesmsbl.org",
"private": true,
"//": "Use gulp for dev. It's cross platform.",
"scripts": {
"build": "gulp build",
"install": "gulp fix-react-native",
Expand Down Expand Up @@ -44,6 +43,7 @@
"cors": "^2.6.0",
"css-loader": "^0.23.0",
"del": "^2.1.0",
"eslint": "~2.2.0",
"eslint-config-airbnb": "^6.0.2",
"eslint-loader": "^1.1.1",
"eslint-plugin-babel": "^3.0.0",
Expand Down

0 comments on commit 6a9413c

Please sign in to comment.