daily-examples/.eslintrc

30 lines
624 B
Plaintext

{
"extends": ["next/core-web-vitals", "prettier"],
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
"import/no-extraneous-dependencies": 0,
"@next/next/no-img-element": 0,
"import/order": [
"error",
{
"groups": ["builtin", "external", "parent", "sibling", "index"],
"pathGroups": [
{
"pattern": "react",
"group": "external",
"position": "before"
}
],
"pathGroupsExcludedImportTypes": ["react"],
"alphabetize": {
"order": "asc"
}
}
]
}
}