39 lines
630 B
Plaintext
39 lines
630 B
Plaintext
{
|
|
"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"
|
|
}
|
|
}
|
|
}
|