mirror of
https://github.com/XFox111/my-website.git
synced 2026-04-22 07:28:01 +03:00
37 lines
536 B
JSON
37 lines
536 B
JSON
{
|
|
"extends": [
|
|
"next/core-web-vitals",
|
|
"eslint:recommended"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 6,
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
}
|
|
},
|
|
"rules": {
|
|
"react/no-unescaped-entities": "off",
|
|
"indent": [
|
|
"warn",
|
|
"tab",
|
|
{
|
|
"SwitchCase": 1
|
|
}
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"double"
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"no-unused-vars": "warn",
|
|
"react/react-in-jsx-scope": "off",
|
|
"react/jsx-uses-react": "off",
|
|
"no-unreachable": "warn",
|
|
"no-empty": "warn"
|
|
}
|
|
}
|