Skip to content

Commit

Permalink
Convert to eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
windowsair authored and thegecko committed Jan 30, 2024
1 parent 0fa192f commit 229bd3d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import del from 'rollup-plugin-delete';
import tslint from 'rollup-plugin-tslint';
import eslint from '@rollup/plugin-eslint';
import builtins from 'rollup-plugin-node-builtins';
import typescript from 'rollup-plugin-typescript2';
import { terser } from 'rollup-plugin-terser';
Expand Down Expand Up @@ -31,7 +31,7 @@ export default {
'types/*'
]
}),
tslint({
eslint({
throwOnError: true
}),
builtins(),
Expand Down
4 changes: 2 additions & 2 deletions rollup.web.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import del from 'rollup-plugin-delete';
import tslint from 'rollup-plugin-tslint';
import eslint from '@rollup/plugin-eslint';
import builtins from 'rollup-plugin-node-builtins';
import typescript from 'rollup-plugin-typescript2';
import { terser } from 'rollup-plugin-terser';
Expand Down Expand Up @@ -33,7 +33,7 @@ export default {
'types/*'
]
}),
tslint({
eslint({
throwOnError: true
}),
builtins(),
Expand Down

0 comments on commit 229bd3d

Please sign in to comment.