Skip to content

Commit

Permalink
should pass CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vuzDylan committed May 10, 2017
1 parent b53ea22 commit 3e098b9
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 7 deletions.
32 changes: 27 additions & 5 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
---
extends: 'airbnb'
env:
browser: true
node: true
{
"extends": [
"airbnb",
],
"parser": "babel-eslint",
"globals": {
"gapi": true,
},
"env": {
"browser": true,
"node": true,
"mocha": true
},
"ecmaFeatures": {
"jsx": true,
"es6": true,
"classes": true
},
"rules": {
"comma-dangle": [1, "always-multiline"],
"no-underscore-dangle" : 0,
"max-len": [1, 180, 4],
"arrow-body-style": [0],
"react/jsx-no-bind": [0],
"react/no-array-index-key": [0],
}
}
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"lint": "eslint .",
"lint": "eslint .",
"postinstall": "npm run build"
},
"repository": {
Expand All @@ -31,9 +31,11 @@
"qs": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^3.16.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0"
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^7.0.0"
}
}

0 comments on commit 3e098b9

Please sign in to comment.