Files
seasonedShows/.eslintrc.json

19 lines
299 B
JSON

{
"root": true,
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"extends": ["eslint-config-airbnb-base", "plugin:prettier/recommended"],
"rules": {
"no-empty": [
2,
{
"allowEmptyCatch": true
}
],
"no-underscore-dangle": "off",
"no-shadow": "off"
}
}