We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a75ef56 commit 0192b62Copy full SHA for 0192b62
tests/src/configs/all.ts
@@ -1,4 +1,5 @@
1
import assert from 'assert';
2
+import semver from 'semver';
3
import plugin from '../../../src/index';
4
import { LegacyESLint, ESLint } from '../../utils/eslint-compat';
5
@@ -33,6 +34,7 @@ describe('`all` config', () => {
33
34
);
35
});
36
it('`all` config should work. ', async () => {
37
+ if (semver.satisfies(ESLint.version, '<8.0.0')) return;
38
const code = `<script>const a = 1, b = 2;</script>{@html a+b}`;
39
40
const linter = new ESLint({
0 commit comments