Files
bls-wallet-website/.eslintrc.json
Blake Duncan 1af4aa5ac9 Add eslint to project (#12)
* Add eslint and fix errors

* Fix console issues
2023-01-19 22:09:21 +00:00

28 lines
664 B
JSON

{
"extends": [
"next/core-web-vitals",
"plugin:react/recommended",
"airbnb"
],
"rules": {
"@typescript-eslint/space-before-blocks": "off",
"no-param-reassign": "off",
"import/prefer-default-export": "off",
"react/jsx-props-no-spreading": "off",
"@typescript-eslint/no-use-before-define": "off",
"react/react-in-jsx-scope": "off",
"react/jsx-filename-extension": "off",
"consistent-return": "off",
"no-restricted-globals": "warn",
"react/prop-types": "off",
"no-use-before-define": [
"off",
{
"functions": true,
"classes": true,
"variables": true
}
]
}
}