Files
wkc-website/.eslintrc.json
2022-04-08 11:43:48 -05:00

26 lines
530 B
JSON

{
"rules": {
"comma-dangle": [
"error",
{
"arrays": "never",
"objects": "never",
"imports": "never",
"exports": "never",
"functions": "never"
}
]
},
"extends": [
"next",
"next/core-web-vitals",
"plugin:jsx-a11y/strict",
"prettier",
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended"
],
"plugins": ["@typescript-eslint", "react-hooks", "jsx-a11y"]
}