Skip to content

Commit

Permalink
Update npm packages
Browse files Browse the repository at this point in the history
Update to final Vue2 version
switch to @babel/eslint-parser
  • Loading branch information
TimCsaky committed Mar 20, 2024
1 parent eb42ec3 commit 5dee7e2
Show file tree
Hide file tree
Showing 9 changed files with 13,845 additions and 30,417 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
fail-fast: true
matrix:
node-version:
- 14.x
- 16.x
- 18.x
- 20.x
steps:
- name: Checkout Repository
uses: actions/checkout@v2
Expand Down Expand Up @@ -62,9 +62,9 @@ jobs:
fail-fast: true
matrix:
node-version:
- 14.x
- 16.x
- 18.x
- 20.x
steps:
- name: Checkout Repository
uses: actions/checkout@v2
Expand Down
11 changes: 8 additions & 3 deletions app/frontend/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,21 @@ module.exports = {
jest: true,
node: true
},
extends: ['plugin:vue/essential', 'eslint:recommended'],
extends: [
'plugin:vue/essential',
'plugin:vuetify/base',
'eslint:recommended'
],
plugins: ['vuetify'],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
_: false
},
parserOptions: {
parser: 'babel-eslint',
ecmaVersion: 8
parser: '@babel/eslint-parser',
ecmaVersion: 8,
requireConfigFile: false
},
rules: {
'eol-last': ['error', 'always'],
Expand Down
Loading

0 comments on commit 5dee7e2

Please sign in to comment.