Created
November 4, 2021 20:00
-
-
Save agusrichard/c7fd91ad10808f625fe7c1ca58b702e3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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