I can't disable my eslint no matter what. Husky still throws an error as it runs pre commit Line I want to disable: ``` // eslint-disable-next-line @typescript-eslint/no-var-requires const GraphQLUpload = require('graphql-upload/GraphQLUpload.js'); ``` Husky error: ``` error Require statement not part of import statement @typescript-eslint/no-var-require ``` Husky script: ``` "pre-commit": "lint-staged", ```