Skip to content

Commit

Permalink
Merge pull request #52 from bendsouza2/feature/issue-28/release-timer
Browse files Browse the repository at this point in the history
working timer functionality
  • Loading branch information
bendsouza2 authored Jan 5, 2025
2 parents dad3b2f + e51cb60 commit 64c8531
Show file tree
Hide file tree
Showing 11 changed files with 3,558 additions and 1,243 deletions.
2 changes: 1 addition & 1 deletion frontend/.env.development
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VUE_APP_API_BASE_URL=http://localhost:8000/
VUE_APP_API_BASE_URL=http://127.0.0.1:8000/api/
20 changes: 20 additions & 0 deletions frontend/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
module.exports = {
root: true,
env: {
node: true
},
extends: [
'eslint:recommended',
'plugin:vue/vue3-essential',
'@vue/eslint-config-typescript/recommended'
],
parserOptions: {
parser: '@typescript-eslint/parser',
ecmaVersion: 'latest'
},
rules: {
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': 'warn',
'vue/multi-word-component-names': 'off'
}
};
Loading

0 comments on commit 64c8531

Please sign in to comment.