buster/web/.eslintrc.json

23 lines
543 B
JSON
Raw Normal View History

{
"env": {
"jest": true,
"node": true
},
"extends": ["next/core-web-vitals", "next/typescript", "plugin:storybook/recommended"],
"rules": {
"@typescript-eslint/no-unused-vars": "off",
"no-console": "off",
"react/no-array-index-key": "warn"
},
"overrides": [
{
"files": ["**/*.test.*", "**/*.spec.*", "**/*.stories.*"],
"rules": {
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off",
"react/no-children-prop": "off"
}
}
]
}