-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from Libertai/reza/chat-settings
Fixes LIB-105 Fixes LIB-110 Fixes LIB-112
- Loading branch information
Showing
51 changed files
with
1,664 additions
and
1,372 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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* |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.