1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 14:05:53 +02:00
.profile/.eslintrc.json

17 lines
356 B
JSON
Raw Normal View History

{
2021-12-04 15:52:51 +01:00
"extends": ["conventions", "next/core-web-vitals", "prettier"],
"plugins": ["prettier", "unicorn"],
"parserOptions": {
"project": "./tsconfig.json"
},
"env": {
"node": true,
"browser": true
},
"rules": {
"prettier/prettier": "error",
2022-08-27 02:30:55 +02:00
"unicorn/prefer-node-protocol": "error",
"@next/next/no-img-element": "off"
}
}