emailjs/.eslintrc.json

29 lines
427 B
JSON
Raw Permalink Normal View History

2018-05-27 04:25:08 +00:00
{
2020-04-23 04:26:49 +00:00
"parser": "@typescript-eslint/parser",
2018-05-27 04:25:08 +00:00
"plugins": [
2020-04-23 04:26:49 +00:00
"@typescript-eslint"
2018-05-27 04:25:08 +00:00
],
"extends": [
"eslint:recommended",
2020-05-24 14:47:49 +00:00
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended"
2018-05-27 04:25:08 +00:00
],
"rules": {
2020-05-24 14:47:49 +00:00
"@typescript-eslint/no-explicit-any": [
"error",
{
"ignoreRestArgs": true
}
],
2018-06-04 16:39:26 +00:00
"curly": [
"error",
"all"
],
2018-05-27 04:25:08 +00:00
"linebreak-style": [
"error",
"unix"
],
2020-04-23 04:26:49 +00:00
"valid-jsdoc": "error"
2018-05-27 04:25:08 +00:00
}
}