Files
photos/frontend/.eslintrc.json
2020-10-10 13:52:57 +03:00

38 lines
778 B
JSON

{
"plugins": [
"jest",
"react",
"react-hooks",
"html"
],
"extends": [
"plugin:jest/recommended",
"plugin:react-hooks/recommended",
"plugin:react/recommended"
],
"env": {
"browser": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"project": "./tsconfig.json"
},
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [
".ts",
".tsx"
]
},
"import/resolver": {
"typescript": {
"alwaysTryTypes": true,
"project": [
"./tsconfig.json"
]
}
}
}
}