diff --git a/.eslintrc b/.eslintrc index 3acc75f..68b38a2 100644 --- a/.eslintrc +++ b/.eslintrc @@ -9,10 +9,15 @@ }, "plugins": ["jest","prettier"], "rules": { + "class-methods-use-this": "warn", + "default-param-last": "warn", "import/prefer-default-export": "off", "no-console": "off", "prettier/prettier": ["error"], "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], + "react/prop-types": "warn", + "react/no-unstable-nested-components": "warn", + "react/no-unused-class-component-methods": "warn", "require-jsdoc": ["error", { "require": { "FunctionDeclaration": true,