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

Commit

Permalink
Disable the indent rule in eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
AsaAyers committed Nov 8, 2018
1 parent ba84f1f commit 2782adc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .eslintrc.js
Expand Up @@ -18,7 +18,9 @@ module.exports = {
"comma-dangle": [0],
"no-this-before-super": [2],
"constructor-super": [2],
indent: [2, 2],
// prettier handles indentation, and they disagree on some of the code in
// find-destination-spec.jw
// indent: [2, 2],
"linebreak-style": [2, "unix"],
"no-var": [1],
"prefer-const": [1],
Expand Down

0 comments on commit 2782adc

Please sign in to comment.