2025-05-23 23:34:50 +07:00
|
|
|
{
|
|
|
|
|
"env": {
|
2025-05-25 02:15:41 +07:00
|
|
|
"browser": true,
|
|
|
|
|
"es2021": true,
|
|
|
|
|
"jest": true
|
2025-05-23 23:34:50 +07:00
|
|
|
},
|
2025-05-25 02:15:41 +07:00
|
|
|
"extends": [
|
|
|
|
|
"eslint:recommended",
|
|
|
|
|
"plugin:react/recommended",
|
|
|
|
|
"plugin:react-hooks/recommended"
|
|
|
|
|
],
|
2025-05-23 23:34:50 +07:00
|
|
|
"parserOptions": {
|
2025-05-25 02:15:41 +07:00
|
|
|
"ecmaVersion": 12,
|
|
|
|
|
"sourceType": "module",
|
|
|
|
|
"ecmaFeatures": {
|
|
|
|
|
"jsx": true
|
|
|
|
|
}
|
2025-05-23 23:34:50 +07:00
|
|
|
},
|
2025-05-25 02:15:41 +07:00
|
|
|
"plugins": ["react", "react-hooks"],
|
2025-05-23 23:34:50 +07:00
|
|
|
"rules": {
|
2025-05-25 02:15:41 +07:00
|
|
|
"react/react-in-jsx-scope": "off",
|
|
|
|
|
"react/prop-types": "off"
|
|
|
|
|
},
|
|
|
|
|
"settings": {
|
|
|
|
|
"react": {
|
|
|
|
|
"version": "detect"
|
|
|
|
|
}
|
2025-05-23 23:34:50 +07:00
|
|
|
}
|
|
|
|
|
}
|