2
2
mirror of https://github.com/Thream/website.git synced 2024-07-21 09:28:32 +02:00
website/.eslintrc.json
2021-12-28 16:06:58 +01:00

33 lines
589 B
JSON

{
"extends": [
"standard-with-typescript",
"next",
"next/core-web-vitals",
"plugin:storybook/recommended",
"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
}
}
}
]
}
}