Skip to content

Commit

Permalink
[eslint] don’t warn about console logs in scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Sep 5, 2020
1 parent f40c8ae commit bbe529a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .eslintrc
Expand Up @@ -55,4 +55,13 @@
},
},
},

"overrides": [
{
"files": "scripts/**",
"rules": {
"no-console": "off",
},
},
],
}

0 comments on commit bbe529a

Please sign in to comment.