I have angular(12) project in VS2019 with TSLint.
I have migrated project from tslint to eslint with following commands.
ng add @angular-eslint/schematics
ng g @angular-eslint/schematics:convert-tslint-to-eslint
It will generate .eslintrc.json file with the default rules.
I have enable ESLint as below:

Here its referencing to global configuration file. I want to change this to generated .eslintrc.json file.
I want Linting as per .eslintrc.json file. How to achieve this in VS 2019?