startpage/.eslintrc.json

26 lines
477 B
JSON
Raw Normal View History

2020-04-19 21:31:59 +00:00
{
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"react"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended"
],
"rules": {
2020-04-22 13:12:21 +00:00
"semi": "error",
"@typescript-eslint/explicit-function-return-type": ["off"]
2020-04-19 21:31:59 +00:00
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
2020-04-25 20:35:27 +00:00
},
"globals": {
"VERSION": true
}
2020-04-19 21:31:59 +00:00
}