Skip to content

Commit

Permalink
Merge pull request #61 from kiki-le-singe/fix_lint_script
Browse files Browse the repository at this point in the history
Fix lint script
  • Loading branch information
kiki-le-singe authored Oct 31, 2016
2 parents b9cacac + 73a8395 commit 0f20602
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .eslintrc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ rules:
comma-dangle: 0
no-underscore-dangle: off
global-require: 0
react/forbid-prop-types: 0
react/jsx-filename-extension: [1, { "extensions": [".js", ".jsx"] }]
react/prefer-stateless-function: [2, {"ignorePureComponents": true}]
react/require-extension: "off"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
"start:client:server": "better-npm-run start:client:server",
"test": "better-npm-run test",
"test:dev": "npm run test -- --watch",
"lint": "eslint src tests"
"lint": "eslint src tests --ext .jsx,.js"
},
"betterScripts": {
"start": {
Expand Down
2 changes: 1 addition & 1 deletion src/server/components/Html/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default class Html extends Component {
const { component, store } = this.props

return (
<html>
<html lang="en">
<head>
<meta charSet="utf-8" />

Expand Down

0 comments on commit 0f20602

Please sign in to comment.