mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-08-17 21:25:54 +02:00
34 lines
618 B
JSON
34 lines
618 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:react/recommended",
|
|
"plugin:react-hooks/recommended"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
},
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": ["react"],
|
|
"rules": {
|
|
"react/prop-types": 0,
|
|
"no-unused-vars": 0,
|
|
"no-empty": 0,
|
|
"no-case-declarations": 0,
|
|
"react/no-deprecated": 0,
|
|
"no-undef": 0
|
|
},
|
|
"ignorePatterns": ["**/build/**", "**/*.config.js"],
|
|
"settings": {
|
|
"react": {
|
|
"version": "detect"
|
|
}
|
|
}
|
|
}
|