Files
the-biergarten-app/.eslintrc.json
2023-12-10 12:47:09 -05:00

13 lines
341 B
JSON

{
"extends": ["next/core-web-vitals", "airbnb-base", "airbnb-typescript", "prettier"],
"rules": {
"arrow-body-style": "off",
"import/extensions": "warn",
"import/order": "warn",
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }]
},
"parserOptions": {
"project": ["./tsconfig.json"]
}
}