File tree 2 files changed +14
-3
lines changed
2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -2,16 +2,24 @@ language:
2
2
- ruby
3
3
rvm :
4
4
- 2.2.3
5
+ sudo : false
6
+ addons :
7
+ apt :
8
+ sources :
9
+ ubuntu-toolchain-r-test
10
+ packages :
11
+ g++-4.9
12
+ env :
13
+ global :
14
+ - RAILS_ENV=test
15
+ - CXX=g++-4.9
5
16
install :
6
17
- bundle install
7
18
- nvm install 5.0
8
19
- nvm use 5.0
9
- - npm install -g npm
10
20
- npm install
11
21
- cd client && npm run build:client
12
22
- npm run build:server
13
- env :
14
- - export RAILS_ENV=test
15
23
before_script :
16
24
- export DISPLAY=:99.0
17
25
- sh -e /etc/init.d/xvfb start
Original file line number Diff line number Diff line change
1
+ // react/prop-types rule is ignored because of this issue: https://github.com/yannickcr/eslint-plugin-react/issues/9
2
+ /* eslint react/prop-types: 0 */
3
+
1
4
import { compose , createStore , applyMiddleware , combineReducers } from 'redux' ;
2
5
import thunkMiddleware from 'redux-thunk' ;
3
6
import loggerMiddleware from '../middlewares/loggerMiddleware' ;
You can’t perform that action at this time.
0 commit comments