Files
conve-x/.eslintrc.json
T

14 lines
236 B
JSON
Raw Normal View History

2023-09-09 17:02:12 -05:00
{
2023-09-16 11:41:08 -05:00
"plugins": ["prettier"],
"extends": ["next/core-web-vitals", "plugin:prettier/recommended"],
2023-09-11 21:23:37 -05:00
"rules": {
2023-09-16 11:41:08 -05:00
"no-console": "warn",
2023-09-16 11:53:41 -05:00
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
]
2023-09-11 21:23:37 -05:00
}
2023-09-09 17:02:12 -05:00
}