iconoir/iconoir.com/.eslintrc.json

21 lines
325 B
JSON
Raw Normal View History

{
2023-01-11 19:08:14 +01:00
"extends": ["next/core-web-vitals"],
2023-10-29 00:33:17 +02:00
"settings": {
"next": {
"rootDir": "iconoir.com"
}
},
"rules": {
"react/no-unescaped-entities": ["off"]
2023-01-11 19:08:14 +01:00
},
"overrides": [
{
"files": ["*.js"],
"parser": "espree",
"parserOptions": {
"ecmaVersion": "latest"
2023-01-11 19:08:14 +01:00
}
}
]
}