Skip to content

Commit

Permalink
Merge pull request #348 from MetroStar/vite-plugin-eslint
Browse files Browse the repository at this point in the history
Remove vite-plugin-eslint
  • Loading branch information
jbouder authored Oct 5, 2024
2 parents 8b52650 + 6ab5596 commit f742668
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 47 deletions.
46 changes: 2 additions & 44 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@
"unlighthouse": "0.13.5",
"vite": "^5.4.8",
"vite-plugin-environment": "1.1.3",
"vite-plugin-eslint": "1.8.1",
"vite-tsconfig-paths": "5.0.1",
"vitest": "^2.0.5"
},
Expand Down
3 changes: 1 addition & 2 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@ import path from 'path';
import { fileURLToPath } from 'url';
import { defineConfig } from 'vite';
import EnvironmentPlugin from 'vite-plugin-environment';
import eslint from 'vite-plugin-eslint';
import tsconfigPaths from 'vite-tsconfig-paths';

const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);

// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), tsconfigPaths(), eslint(), EnvironmentPlugin('all')],
plugins: [react(), tsconfigPaths(), EnvironmentPlugin('all')],
resolve: {
alias: {
'~uswds': path.resolve(__dirname, 'node_modules/@uswds/uswds'),
Expand Down

0 comments on commit f742668

Please sign in to comment.