I've exhaustively attempted various methods, but I can't seem to figure out how to disable eqeqeq for my specific project.
The framework of my project is based on create-react-app using TypeScript.
Here are some visual references: https://i.sstatic.net/okTMm.jpg https://i.sstatic.net/ifSWH.jpg
I experimented with multiple plugins for eslint and tslint
I've tinkered with various configuration files:
.eslintrc
.eslint.config
.eslint.json
.tslintrc
.tslint.config
.tslint.json
I even attempted tweaks in the package.json file:
"eslintConfig": {
"extends": "react-app"
"rules": {
"eqeqeq": "off"
}
},
I've tested different combinations of rules in the rc, .json or .config files like so:
{
"rules": {
"eqeqeq": "off" // options include never, 0, 2
}
}