Conduitry
Conduitry
This is intentional - https://github.com/terser/terser/blob/master/CHANGELOG.md#v560 - and has been in the works for a while - 675e9035827a9ca8e43ec1d9ce08c1d662017f25 From the readme: > *Beautification* has been undocumented and is *being removed* from...
I think the issue is say that they _expected_ this to be optimized to `undefined`, but it was not. (Which isn't a bug, but it does sound like a feature...
This is almost certainly an issue with Atom. I'm guessing the ESLint integration has an optimization where it doesn't re-run linting unless the script tag is updated. I haven't used...
There are a few hurdles between here and preprocessor support. One is that preprocessors are allowed to be async and ESLint plugins have to be synchronous. Relying on something like...
Linting when using a preprocessor that doesn't return a sourcemap (or something equivalent to a sourcemap) is never going to be possible. It looks like that preprocessor [doesn't return one](https://github.com/pyoner/svelte-typescript/blob/3c7b1472a95a3db844fd9dd678c74d487d1f0fb1/packages/preprocess/src/svelte-ts-preprocess.ts#L214)....
Is there some way to access the cache when using Jest? Because of ESLint API limitations, we do need to be able to monkeypatch some stuff on the copy of...
I assume this is meant to say ``? This isn't an official Svelte syntax, and is something added by svelte-preprocess. But, since that's an official library, I think it might...
What does your full eslint config look like? Do you have `sourceType: 'module'` and an appropriate `ecmaVersion`?
It's listed on https://github.com/sveltejs/eslint-plugin-svelte3/blob/master/OTHER_PLUGINS.md#eslint-plugin-prettier that this plugin is known not to play nicely with the `eslint-plugin-prettier`, which I'm assuming you're pulling in via `plugin:prettier/recommended`. It's hard to tell what's going...
This was an intentional change in [version 2](https://github.com/sveltejs/eslint-plugin-svelte3/blob/master/CHANGELOG.md#v200). I understand that ESLint themselves are encouraging people to write CommonJS-formatted `.eslintrc.js` files, and requiring these to be functions is one less...