Skip to content

Commit

Permalink
fix: remove unicorn/escape-case (#50)
Browse files Browse the repository at this point in the history
* fix: removing the `unicorn/escape-case` rule from being applied

* feat: enabling `jest/prefer-todo`
  • Loading branch information
erunion authored Feb 25, 2020
1 parent 714778c commit d2d53b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ module.exports = {
// "unicorn/consistent-function-scoping": "error", // Maybe?
'unicorn/custom-error-definition': 'error',
'unicorn/error-message': 'error',
'unicorn/escape-case': 'error',
'unicorn/new-for-builtins': 'error',
'unicorn/no-array-instanceof': 'error',
// "unicorn/no-for-loop": "error", // Maybe?
Expand Down
2 changes: 2 additions & 0 deletions testing.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ module.exports = {
'jest/no-disabled-tests': 'off',
'jest/no-duplicate-hooks': 'warn',
'jest/no-expect-resolves': 'warn',
'jest/no-truthy-falsy': 'error',
'jest/no-if': 'error',
'jest/prefer-hooks-on-top': 'warn',
'jest/prefer-strict-equal': 'error',
'jest/prefer-todo': 'warn',
'jest/require-to-throw-message': 'error',
'jest/valid-describe': 'error',
'jest/valid-title': 'warn',
Expand Down

0 comments on commit d2d53b6

Please sign in to comment.