Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulLeCam committed Jul 28, 2016
1 parent ad48541 commit be500ab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 72 deletions.
74 changes: 4 additions & 70 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"extends": ["standard", "standard-react"],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"ecmaVersion": 7,
"jsx": true,
"sourceType": "module"
},
Expand All @@ -15,74 +15,8 @@
],
"rules": {
"comma-dangle": [1, "always-multiline"],
"no-cond-assign": 2,
"no-console": 2,
"no-constant-condition": 2,
"no-control-regex": 2,
"no-debugger": 2,
"no-dupe-args": 2,
"no-dupe-keys": 2,
"no-duplicate-case": 2,
"no-empty-character-class": 2,
"no-empty": 2,
"no-ex-assign": 2,
"no-extra-boolean-cast": 2,
"no-extra-parens": 0,
"no-extra-semi": 2,
"no-func-assign": 2,
"no-inner-declarations": 2,
"no-invalid-regexp": 2,
"no-irregular-whitespace": 2,
"no-negated-in-lhs": 2,
"no-obj-calls": 2,
"no-regex-spaces": 2,
"no-sparse-arrays": 2,
"no-unreachable": 2,
"use-isnan": 2,
"valid-jsdoc": 1,
"valid-typeof": 2,
"no-unexpected-multiline": 1,
"dot-notation": 1,
"eqeqeq": 1,
"no-alert": 2,
"no-caller": 2,
"no-eval": 2,
"no-extend-native": 2,
"no-extra-bind": 2,
"no-native-reassign": 2,
"no-new-func": 2,
"no-new-wrappers": 2,
"no-redeclare": 2,
"no-throw-literal": 2,
"no-with": 2,
"radix": 2,
"no-shadow": 2,
"no-duplicate-imports": [0],
"no-unused-vars": [2, { "varsIgnorePattern": "^_" }],
"no-use-before-define": 1,
"quotes": [2, "single", "avoid-escape"],
"jsx-quotes": [1, "prefer-single"],
"no-var": 2,
"prefer-const": 1,
"react/display-name": 0,
"react/jsx-boolean-value": [1, "never"],
"react/jsx-curly-spacing": [1, "never"],
"react/jsx-max-props-per-line": 0,
"react/jsx-no-duplicate-props": 2,
"react/jsx-no-undef": 2,
"react/jsx-sort-props": 1,
"react/jsx-uses-react": 1,
"react/jsx-uses-vars": 1,
"react/no-danger": 1,
"react/no-did-mount-set-state": 2,
"react/no-did-update-set-state": 2,
"react/no-multi-comp": 0,
"react/no-unknown-property": 1,
"react/prop-types": 2,
"react/react-in-jsx-scope": 1,
"react/require-extension": 1,
"react/self-closing-comp": 1,
"react/sort-comp": 1,
"react/sort-prop-types": 1,
"react/wrap-multilines": 1
"space-infix-ops": [0]
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-jest": "^13.2.2",
"babel-jest": "^14.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-lodash": "^3.2.4",
Expand All @@ -63,7 +63,7 @@
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-react": "^5.2.2",
"eslint-plugin-standard": "^2.0.0",
"jest-cli": "^13.2.3",
"jest-cli": "^14.0.0",
"leaflet": "^1.0.0-rc.2",
"lodash-webpack-plugin": "^0.9.2",
"onchange": "^2.5.0",
Expand Down

0 comments on commit be500ab

Please sign in to comment.