mars-v2-frontend/.eslintrc.json
Linkie Link 609be9eb64
feat: refactored the toast responses (#442)
* feat: refactored the toast responses

* fix: fixed the map return

* feat: added a recent transaction center

* tidy: removed logs

* fix: fixed autolend

* feat: added global lending on first account funding

* fix: added endOfLine setting

* feat: added eslint warnings for lineEnds

* fix: made the vault message generic
2023-09-11 10:35:13 +02:00

21 lines
404 B
JSON

{
"extends": "next/core-web-vitals",
"rules": {
"linebreak-style": ["warn", "unix"],
"sort-imports": [
"warn",
{
"ignoreCase": true,
"ignoreDeclarationSort": true
}
],
"import/order": [
"warn",
{
"newlines-between": "always",
"groups": ["external", "builtin", "internal", "sibling", "parent", "index"]
}
]
}
}