Skip to content

Commit

Permalink
feat(base): Kill semicolons
Browse files Browse the repository at this point in the history
They don't matter. Seriously... https://twitter.com/kentcdodds/status/654020203009871872

BREAKING CHANGE: Swap requirement for semicolons
  • Loading branch information
Kent C. Dodds committed Oct 13, 2015
1 parent f88977e commit 746faf8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ module.exports = {
"no-reserved-keys": 0,
"no-sparse-arrays": 2,
"no-unreachable": 2,
"no-unexpected-multiline": 2,
"use-isnan": 2,
"valid-jsdoc": [2, {"requireReturn": false}],
"valid-typeof": 2,
Expand Down Expand Up @@ -144,7 +145,7 @@ module.exports = {
"padded-blocks": 0,
"quote-props": [2, "as-needed"],
"semi-spacing": [2, {"before": false, "after": true}],
"semi": [2, "always"],
"semi": [2, "never"],
"sort-vars": 0,
"space-after-keywords": [2, "always"],
"space-before-blocks": [2, "always"],
Expand Down

0 comments on commit 746faf8

Please sign in to comment.