Skip to content

Commit

Permalink
chore(eslint): "no-underscore-dangle" rules disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
juunie-roh committed Jun 6, 2024
1 parent 1c59336 commit f389294
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"rules": {
"import/extensions": "off",
"no-param-reassign": "off",
"no-underscore-dangle": "off",
"prettier/prettier": [
"error",
{
Expand Down Expand Up @@ -69,7 +70,8 @@
{ "argsIgnorePattern": "^_" }
],
// Custom Options:
"no-param-reassign": "off"
"no-param-reassign": "off",
"no-underscore-dangle": "off"
}
},
// Configuration for testing
Expand Down
2 changes: 0 additions & 2 deletions src/app/techrecord/(pages)/redux-example/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* eslint-disable no-underscore-dangle */

'use client';

import { decrement, getCatFacts, increment } from '@/libs/features';
Expand Down

0 comments on commit f389294

Please sign in to comment.