Skip to content

Commit

Permalink
Merge pull request #19 from Libertai/reza/chat-settings
Browse files Browse the repository at this point in the history
Fixes LIB-105
Fixes LIB-110
Fixes LIB-112
  • Loading branch information
aliel authored Jul 25, 2024
2 parents 2b3557f + 6a89017 commit fad7258
Show file tree
Hide file tree
Showing 51 changed files with 1,664 additions and 1,372 deletions.
2 changes: 0 additions & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/dist
/src-capacitor
/src-cordova
/.quasar
/node_modules
/quasar.config.*.temporary.compiled*
68 changes: 0 additions & 68 deletions .eslintrc.cjs

This file was deleted.

34 changes: 34 additions & 0 deletions .eslintrc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
root: true

parser: 'vue-eslint-parser'
parserOptions:
parser: '@typescript-eslint/parser'

env:
node: true
browser: true
'vue/setup-compiler-macros': true

extends:
- 'eslint:recommended'

# Uncomment any of the lines below to choose desired strictness,
# but leave only one uncommented!
# See https://eslint.vuejs.org/rules/#available-rules
# "plugin:vue/vue3-essential", # Priority A: Essential (Error Prevention)
# 'plugin:vue/vue3-strongly-recommended', # Priority B: Strongly Recommended (Improving Readability)
- 'plugin:vue/vue3-recommended' # Priority C: Recommended (Minimizing Arbitrary Choices and Cognitive Overhead)

# --- ONLY WHEN USING PRETTIER ---
# https://github.com/prettier/eslint-config-prettier#installation
# usage with Prettier, provided by 'eslint-config-prettier'.
- prettier

plugins:
- vue

rules:
'no-unused-vars': [ 'warn', { argsIgnorePattern: '^_', varsIgnorePattern: '^_' } ]

'vue/multi-word-component-names': 'off'
'vue/no-v-html': 'off'
4 changes: 0 additions & 4 deletions .npmrc

This file was deleted.

9 changes: 1 addition & 8 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!doctype html>
<html>
<html lang="en">
<head>
<title><%= productName %></title>

Expand All @@ -18,13 +18,6 @@
<link color="#5bbad5" href="/safari-pinned-tab.svg" rel="mask-icon" />
<meta content="#da532c" name="msapplication-TileColor" />
<meta content="#ffffff" name="theme-color" />

<script src="//cdnjs.cloudflare.com/ajax/libs/pdf.js/2.7.570/pdf.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/pdf.js/2.7.570/pdf.worker.min.js"></script>

<link href="https://fonts.googleapis.com" rel="preconnect" />
<link crossorigin href="https://fonts.gstatic.com" rel="preconnect" />
<link href="https://fonts.googleapis.com/css2?family=Mulish&display=swap" rel="stylesheet" />
</head>
<body>
<!-- quasar:entry-point -->
Expand Down
Loading

0 comments on commit fad7258

Please sign in to comment.