We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 664451f commit d6a7978Copy full SHA for d6a7978
1 file changed
packages/eslint-config/index.js
@@ -44,6 +44,10 @@ module.exports = {
44
45
'prettier/prettier': ['error', prettierConfig],
46
47
+ // The `eslint-config-airbnb-base` that we extend off of doesn't have any rules for catching for
48
+ // templated strings that aren't templates.
49
+ 'quotes': ['error', 'single', { avoidEscape: true }],
50
+
51
'unicorn/catch-error-name': ['error', { ignore: ['^(error|err|e)$'] }],
52
// "unicorn/consistent-function-scoping": "error", // Maybe?
53
'unicorn/custom-error-definition': 'error',
0 commit comments