I have a huge program written in TypeScript/React. I have several functions all over that I want to remake to arrow functions. Is there a way to find these functions using ESLint?
Currently I have this in ESLint config:
    "rules": {
        "react/no-unknown-property": ["error", { "ignore": ["css"] }],
        "func-style": ["error", "expression", {"allowArrowFunctions": true}],
But it's not showing functions that are not arrow functions.
 
    