Skip to content

Instantly share code, notes, and snippets.

@the-spanish-guy
Last active October 24, 2021 20:30
Show Gist options
  • Save the-spanish-guy/7390a7770247e4ff08c69cc88a72a9f6 to your computer and use it in GitHub Desktop.
Save the-spanish-guy/7390a7770247e4ff08c69cc88a72a9f6 to your computer and use it in GitHub Desktop.
.eslintrc
{
"env": {
"browser": true,
"es2021": true,
"node": true,
"jest": true
},
"extends": ["standard", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["@typescript-eslint"],
"rules": {
"space-before-function-paren": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-module-boundary-types": "off"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment