Skip to content

Commit

Permalink
close #10 (fix eslint react semantics)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateusz Charytoniuk committed Apr 13, 2015
1 parent 8cafc08 commit 40793d2
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
17 changes: 17 additions & 0 deletions eslint/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
"env": {
"node": true
},
"plugins": [
"react"
],
"rules": {
"block-scoped-var": 0,
"brace-style": 2,
Expand Down Expand Up @@ -146,6 +149,20 @@
"quote-props": 0,
"quotes": [2, "double", "avoid-escape"],
"radix": 2,
"react/jsx-boolean-value": 2,
"react/jsx-quotes": [2, "single", "avoid-escape"],
"react/jsx-no-undef": 2,
"react/jsx-sort-props": 0,
"react/jsx-uses-react": 0,
"react/jsx-uses-vars": 2,
"react/no-did-mount-set-state": 2,
"react/no-did-update-set-state": 2,
"react/no-multi-comp": 2,
"react/no-unknown-property": 2,
"react/prop-types": 2,
"react/react-in-jsx-scope": 1,
"react/self-closing-comp": 0,
"react/wrap-multilines": 0,
"semi": 2,
"semi-spacing": 2,
"sort-vars": 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@

"use strict";

import Element from "test-library-4/React/Element";
import "test-library-4/React/Element";
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@

"use strict";

import $ from "jquery";
import "jquery";
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"dependencies": {
"babel-core": "5.x",
"babel-loader": "5.x",
"eslint-plugin-react": "2.x",
"glob": "5.x",
"gulp": "3.x",
"gulp-eslint": "0.x",
Expand Down Expand Up @@ -34,5 +35,5 @@
"scripts": {
"test": "gulp test"
},
"version": "0.2.2"
"version": "0.2.3"
}

0 comments on commit 40793d2

Please sign in to comment.