1
0
mirror of https://github.com/eleith/emailjs.git synced 2024-07-04 11:48:51 +00:00
emailjs/.eslintrc.json
2022-04-13 09:53:53 -07:00

35 lines
537 B
JSON

{
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/ban-ts-comment": [
"error",
{
"ts-ignore": "allow-with-description"
}
],
"@typescript-eslint/no-explicit-any": [
"error",
{
"ignoreRestArgs": true
}
],
"curly": [
"error",
"all"
],
"linebreak-style": [
"error",
"unix"
],
"valid-jsdoc": "error"
}
}