Skip to content

Commit

Permalink
chore: eslint quotes rule
Browse files Browse the repository at this point in the history
Fixes #3685
  • Loading branch information
Josh Gummersall committed Jul 7, 2021
1 parent 1982983 commit f120999
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,18 @@
"jsdoc/require-param-type": "off",
"jsdoc/require-returns": "error",
"jsdoc/require-returns-type": "off",
"lodash/import-scope": [2],
"lodash/import-scope": ["error"],
"no-unused-vars": "off",
"no-var": "error",
"prefer-const": "error",
"prettier/prettier": "error",
"quotes": [
"error",
"single",
{
"avoidEscape": true
}
],
"security/detect-object-injection": "off"
},
"overrides": [
Expand Down

0 comments on commit f120999

Please sign in to comment.