-
should add a falg for having function name and avoid anonymous functions
myFunc.js
```js
export default function () {}
```
should be
```js
export default function myFunc() {}
```
-
The organization I work for has a rule very similar to what match-exported provides, except that we do not want exports from an `index.js` file to need to match the directory name.
We'd love to hav…
-
We dont use default exports so we cant use `match-exported` rule.
I would like a rule to complain if yoh have:
filename: `Button.tsx` and it contained only:
```jsx
const BigButton = () => fo…
-
Hi
I am wondering if there will be a rule to forbid certain filename pattern.
Negatives in regex is a bit hard to use, and the `match-regex` rule doesn't include the file extension as well.
-
When exporting with `export default` from an `index.d.ts` file (TypeScript definitions), I get an error. But the error should be ignored for `index.d.ts` files, just like they are ignored for `index.j…
-
If the filename is `Reddit.ts` and `export = class Reddit {` is used, then `filenames/match-regex` fails, even though it's correctly named.
-
It would be nice to be able to show a custom error message where you could specify exactly which naming convention is violated.
Right now all error messages look like this:
"Filename {file} does n…
-
Hi guys, first of all thank you very much for the plugin It has been very useful for me, the only issue that I have is when I'm trying to use something like this:
``` js
export {
LoadDashboard,…
-
Our company enforces the 'no-default-export' rule across the codebase.
So while there is a single export from every file, it is a non-default named export.
Is there any way to use or adapt this li…
-
ESLint v8.0.0 is [released](https://eslint.org/blog/2021/10/eslint-v8.0.0-released) 🎉
It would be awesome to have official ESLint 8 support. 👊
I'm happy to help where I can of course 🙂