Files
chathub/.eslintrc.json
2023-02-21 17:10:17 +08:00

24 lines
484 B
JSON

{
"parser": "@typescript-eslint/parser",
"env": {
"browser": true
},
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"prettier"
],
"overrides": [],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"react/react-in-jsx-scope": "off"
},
"ignorePatterns": ["build/**"]
}