Skip to content

Instantly share code, notes, and snippets.

@Yecodeo
Created September 5, 2023 13:31
Show Gist options
  • Save Yecodeo/4c4868a287a28e2b5b1adc007890fe05 to your computer and use it in GitHub Desktop.
Save Yecodeo/4c4868a287a28e2b5b1adc007890fe05 to your computer and use it in GitHub Desktop.
eslint typescript config
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier", "import"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended", "prettier"],
"rules": {
"no-empty-function": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-var-requires": "off"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment