Skip to content

Instantly share code, notes, and snippets.

@agusrichard
Created November 4, 2021 20:00
Show Gist options
  • Save agusrichard/c7fd91ad10808f625fe7c1ca58b702e3 to your computer and use it in GitHub Desktop.
Save agusrichard/c7fd91ad10808f625fe7c1ca58b702e3 to your computer and use it in GitHub Desktop.
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"airbnb-base",
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"semi": [2, "never"],
"import/no-unresolved": "off",
"no-console": "off",
"import/extensions": "off",
"max-len": ["error", { "code": 150 }],
"import/prefer-default-export": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"arrow-body-style": "off",
"camelcase": "off"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment