This commit is contained in:
sebseb7
2024-09-05 04:00:27 +02:00
commit c6928eb137
8 changed files with 523 additions and 0 deletions

38
.eslintrc Normal file
View File

@@ -0,0 +1,38 @@
{
"parser": "@babel/eslint-parser",
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": false
},
"rules": {
"react/prop-types": "off",
"no-restricted-imports": [
"error",
{
"patterns": ["@mui/*/*/*", "!@mui/material/test-utils/*"]
}
]
},
"parserOptions": {
"requireConfigFile": false,
"babelOptions": {
"presets": ["@babel/preset-react"]
}
},
"plugins": [
"react",
"@studysync/eslint-plugin-material-ui"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime"
],
"settings": {
"react": {
"version": "detect"
}
}
}