diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b8fa8de7..7c925c0e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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` --- diff --git a/frontend/.eslintrc.js b/frontend/.eslintrc.cjs similarity index 100% rename from frontend/.eslintrc.js rename to frontend/.eslintrc.cjs diff --git a/frontend/vite.config.js b/frontend/vite.config.js index afdc6483..8d9e8fd7 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -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({