-
I have 2 files:
1. test.js
```
import { bogus } from './bogus.js';
bogus()
```
2. bogus.js
```
function foo() {
console.log('foo');
}
export {
foo
}
```
If `bogus.js` is minified, eslint-…
-
Yesterday, tests in all PRs started to fail for the [`vue/func-call-spacing`](https://eslint.vuejs.org/rules/func-call-spacing.html) extension rule, e.g. here: https://github.com/vuejs/eslint-plugin-v…
-
In an ESM project (`.mjs` or `"type": "module"`), eslint-plugin-import can’t find any exports in the `prettier` package. On `import * as prettier from "prettier";`, the `import/namespace` rule complai…
-
## What would you like?
Migrate tests running in [.github/workflows/ci.yml](https://github.com/bmish/eslint-doc-generator/blob/main/.github/workflows/ci.yml) to use ESLint flat configuration.
##…
-
### What happened?
When running `quasar prepare`, an app extension that is linked via file:// in package.json throws exception that there is a missing index script.
### What did you expect to h…
-
Hi 👋,
I've encountered an issue with the `sort-attrs` rule when working with Twig files. The rule works correctly for standard HTML attributes, such as:
```html
Test
```
However, it fails w…
-
Problem: If you have the `prefer-expect-assertions` rule enabled, and also have test like the following...
```JavaScript
it('my test description, ({ expect }) => {
const a = 1;
const b = 2;
…
-
#19134 is an example of an issue where a change was merged into ESLint's `main` branch that caused downstream breakages in third-party plugins. Two popular examples: unicorn (https://github.com/sindre…
-
### Check for existing issues
- [X] Completed
### Describe the bug / provide steps to reproduce it
When using `"code_actions_on_format"` in `.ts`, or `.tsx` files only `"source.organizeImports"` ac…
-
![image](https://github.com/user-attachments/assets/2690952f-976b-473d-8198-8d74b3af9c16)
echo -e "foo()\nlet x" > test.js
deno lint test.js
Deno lint finds the unused "x" but it doesn't warn m…