Skip to content
This repository has been archived by the owner on Jul 29, 2019. It is now read-only.

Commit

Permalink
Fix missing commend end in .eslintrc (#3264)
Browse files Browse the repository at this point in the history
Fix typo in #3262, ending `*/` of a block comment was missing.
Also disabled new item `no-useless-escape` for linting, because this triggers a bit too often for comfort.
  • Loading branch information
wimrijnders authored and yotamberk committed Jul 20, 2017
1 parent e494514 commit e698c5d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"complexity": [2, 55],
"max-statements": [2, 115],
"no-unreachable": 1,
"no-useless-escape": 0,
/*
// some disabled options which might be useful
"no-console": 0,
Expand All @@ -26,8 +27,8 @@
"no-mixed-spaces-and-tabs": 0,
"no-redeclare": 0,
"no-unused-vars": 0,
"no-useless-escape": 0,
// following will flag presence of console.log as error.
"no-console": ["error", { allow: ["warn", "error"] }],
*/
}
}

0 comments on commit e698c5d

Please sign in to comment.