Skip to content

Commit

Permalink
Update ESLint to v0.23
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre Medeiros committed Jun 15, 2015
1 parent eefbf88 commit f576b95
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Expand Up @@ -101,7 +101,7 @@
"valid-typeof": 2,
"max-statements": [1, 30],
"max-params": [1, 3],
"no-var": true,
"no-var": 2,
"semi": 2,
"dot-location": [2, "property"],
// Project specific rules
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -24,7 +24,7 @@
"devDependencies": {
"babel": "5.5.x",
"babelify": "6.1.x",
"eslint": "^0.22.1",
"eslint": "^0.23.0",
"browserify": "10.2.4",
"markdox": "0.1.8",
"mocha": "2.2.5",
Expand Down
2 changes: 1 addition & 1 deletion src/core/cycle.js
Expand Up @@ -6,7 +6,7 @@ let {makeDOMDriver} = require('../web/render-dom');
let {makeHTMLDriver} = require('../web/render-html');
let run = require('./run');

var Cycle = {
let Cycle = {
/**
* Takes an `app` function and circularly connects it to the given collection
* of driver functions.
Expand Down
2 changes: 1 addition & 1 deletion src/web/custom-element-widget.js
Expand Up @@ -8,7 +8,7 @@ function makeDispatchFunction(element, eventName) {
return function dispatchCustomEvent(evData) {
//console.log('%cdispatchCustomEvent ' + eventName,
// 'background-color: #CCCCFF; color: black');
var event;
let event;
try {
event = new Event(eventName);
} catch (err) {
Expand Down

0 comments on commit f576b95

Please sign in to comment.