Skip to content

Instantly share code, notes, and snippets.

@DoctorRyner
Created August 22, 2020 16:44
Show Gist options
  • Save DoctorRyner/f0318883b673ab0786df5d613d2a165b to your computer and use it in GitHub Desktop.
Save DoctorRyner/f0318883b673ab0786df5d613d2a165b to your computer and use it in GitHub Desktop.
{
"env": {
"browser": true,
"es2020": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 11,
"sourceType": "module"
},
"plugins": [
"react",
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/no-empty-function": "off"
},
"settings": {
"react": {
"version": "detect"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment