Skip to content

Commit

Permalink
Update .eslintrc.json to fix 'no-var-requires' issue
Browse files Browse the repository at this point in the history
  • Loading branch information
seog-jun committed Nov 21, 2023
1 parent 892ad49 commit 9c82ffe
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion libs/movex/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {}
"rules": { "@typescript-eslint/no-var-requires": 0 }
},
{
"files": ["*.ts", "*.tsx"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import gameReducerWithDerivedState, {
} from '../resources/gameReducerWithDerivedState';
import { movexClientMasterOrchestrator } from '../util/orchestrator';
import { tillNextTick } from '../util/misc';
// eslint-disable-next-line @typescript-eslint/no-var-requires
require('console-group').install();

beforeAll(() => {
Expand Down

0 comments on commit 9c82ffe

Please sign in to comment.