Skip to content

Commit

Permalink
chore(gulp): use LegacyESLint
Browse files Browse the repository at this point in the history
  • Loading branch information
mainframev committed Jan 2, 2025
1 parent c71d536 commit 889a93b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/gulp/src/plugins/gulp-example-source.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as Babel from '@babel/core';
import { ESLint } from 'eslint';
import { LegacyESLint as ESLint } from 'eslint/use-at-your-own-risk';
import gutil from 'gulp-util';
import prettier from 'prettier';
import through from 'through2';
Expand All @@ -12,6 +12,7 @@ import { ExampleSource } from './util/docs-types';

const prettierConfig = require('../../../../prettier.config');

// eslint-disable-next-line @typescript-eslint/no-deprecated
const eslint = new ESLint({
fix: true,
});
Expand Down

0 comments on commit 889a93b

Please sign in to comment.