messy changes

This commit is contained in:
govardhan
2025-06-16 12:55:55 +05:30
parent a42474deec
commit 3d632d393d
84 changed files with 10619 additions and 17096 deletions

View File

@ -1,9 +1,32 @@
{
"extends": "react-app",
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended"
],
"plugins": ["react", "react-hooks"],
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
"react/style-prop-object": "off",
"jsx-a11y/anchor-is-valid": "off",
"jsx-a11y/heading-has-content": "off",
"jsx-a11y/iframe-has-title": "off"
"jsx-a11y/iframe-has-title": "off",
"react/react-in-jsx-scope": "off"
},
"settings": {
"react": {
"version": "detect"
}
}
}