Shared ESLint configuration for Live Nation
npm install eslint-config-livenationAdd this package to your project.
```
yarn add eslint eslint-config-livenation --dev
and add a lint script to your package.json
``
{
"scripts": {
"lint": "eslint [folder_name]",
...
}
}
Create a .eslintrc.json file in the root folder.
``
{
"extends": "livenation"
}
To make VSCode aware of the files it needs to lint, you need to add the following line to your VSCode settings.
```
"eslint.validate": [ "javascript", "javascriptreact", "html", "typescript", "typescriptreact" ],