1
0
mirror of https://github.com/eleith/emailjs.git synced 2024-06-01 23:25:33 +00:00
emailjs/.eslintrc.json
2020-10-29 23:34:45 -07:00

30 lines
489 B
JSON

{
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": [
"error",
{
"ignoreRestArgs": true
}
],
"curly": [
"error",
"all"
],
"linebreak-style": [
"error",
"unix"
],
"valid-jsdoc": "error"
}
}