Skip to content

Commit

Permalink
Migrated the old eslint configuration to explicitely define it as a c…
Browse files Browse the repository at this point in the history
…ommon JS file instead of an ESM type which is the project default now.
  • Loading branch information
SeriousHorncat committed Jun 28, 2024
1 parent f6239d1 commit 35f05e2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ GitHub Actions are configured to automate these operations upon a git push into
To reference configuration files:

- General & Markdown: `./etc/static-analysis/`
- Frontend: `./frontend/.eslintrc.js`
- Frontend: `./frontend/.eslintrc.cjs`
- Backend: `./backend/.pylintrc`

---
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion frontend/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {defineConfig} from 'vite';
import vue from '@vitejs/plugin-vue';
import strip from '@rollup/plugin-strip';

import * as path from 'path'
import * as path from 'path';

// https://vitejs.dev/config/
export default defineConfig({
Expand Down

0 comments on commit 35f05e2

Please sign in to comment.