What is the process for setting up eslintrc in a project similar to the one shown below?
user
└── projectA
├── index.html
└── lib
├── .eslintrc
├── main.js
└── main_lib.js
The html
file includes both of the js
files. How should the .eslintrc
be configured to address issues like function is not defined
and defined but not used
errors effectively?