mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-04 20:41:30 +01:00
32 lines
553 B
JSON
32 lines
553 B
JSON
{
|
|
"extends": [
|
|
"standard-with-typescript",
|
|
"next",
|
|
"next/core-web-vitals",
|
|
"prettier"
|
|
],
|
|
"plugins": ["unicorn", "prettier"],
|
|
"parserOptions": {
|
|
"project": "./tsconfig.json"
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"browser": true,
|
|
"jest": true
|
|
},
|
|
"rules": {
|
|
"prettier/prettier": "error",
|
|
"unicorn/prefer-node-protocol": "error",
|
|
"unicorn/prevent-abbreviations": [
|
|
"error",
|
|
{
|
|
"replacements": {
|
|
"props": {
|
|
"properties": false
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|