Skip to content

Commit 229bd3d

Browse files
windowsairthegecko
authored andcommittedJan 30, 2024
Convert to eslint
1 parent 0fa192f commit 229bd3d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎rollup.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import del from 'rollup-plugin-delete';
2-
import tslint from 'rollup-plugin-tslint';
2+
import eslint from '@rollup/plugin-eslint';
33
import builtins from 'rollup-plugin-node-builtins';
44
import typescript from 'rollup-plugin-typescript2';
55
import { terser } from 'rollup-plugin-terser';
@@ -31,7 +31,7 @@ export default {
3131
'types/*'
3232
]
3333
}),
34-
tslint({
34+
eslint({
3535
throwOnError: true
3636
}),
3737
builtins(),

‎rollup.web.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import del from 'rollup-plugin-delete';
2-
import tslint from 'rollup-plugin-tslint';
2+
import eslint from '@rollup/plugin-eslint';
33
import builtins from 'rollup-plugin-node-builtins';
44
import typescript from 'rollup-plugin-typescript2';
55
import { terser } from 'rollup-plugin-terser';
@@ -33,7 +33,7 @@ export default {
3333
'types/*'
3434
]
3535
}),
36-
tslint({
36+
eslint({
3737
throwOnError: true
3838
}),
3939
builtins(),

0 commit comments

Comments
 (0)