-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* more changes and general strucutre Signed-off-by: Kevin Beier <[email protected]> * partially rewrote the desktopCapture feature Signed-off-by: Kevin Beier <[email protected]> * adjusted prettierrc Signed-off-by: Kevin Beier <[email protected]> * updating formating and formating Signed-off-by: Kevin Beier <[email protected]> * class infrastructure & uml * regen uml & add npm script * added Vigad logo Signed-off-by: Kevin Beier <[email protected]> * rewrote a lot of the streamhandler implementation Signed-off-by: Kevin Beier <[email protected]> * documenting StreamHandler and finished preview Signed-off-by: Kevin Beier <[email protected]> * resolved pr issues Signed-off-by: Kevin Beier <[email protected]> Signed-off-by: Kevin Beier <[email protected]> Co-authored-by: Kevin Beier <[email protected]>
- Loading branch information
Showing
45 changed files
with
1,344 additions
and
1,399 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,23 +1,23 @@ | ||
module.exports = { | ||
env: { | ||
browser: true, | ||
es2021: true, | ||
}, | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:vue/essential', | ||
'plugin:@typescript-eslint/recommended', | ||
'prettier/@typescript-eslint', | ||
], | ||
parserOptions: { | ||
ecmaVersion: 'latest', | ||
parser: '@typescript-eslint/parser', | ||
sourceType: 'module', | ||
}, | ||
plugins: ['vue', '@typescript-eslint'], | ||
rules: { | ||
// override/add rules settings here, such as: | ||
'vue/no-unused-vars': 'error', | ||
'vue/script-setup-uses-vars': 'off', | ||
}, | ||
} | ||
env: { | ||
browser: true, | ||
es2021: true, | ||
}, | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:vue/essential', | ||
'plugin:@typescript-eslint/recommended', | ||
'prettier/@typescript-eslint', | ||
], | ||
parserOptions: { | ||
ecmaVersion: 'latest', | ||
parser: '@typescript-eslint/parser', | ||
sourceType: 'module', | ||
}, | ||
plugins: ['vue', '@typescript-eslint'], | ||
rules: { | ||
// override/add rules settings here, such as: | ||
'vue/no-unused-vars': 'error', | ||
'vue/script-setup-uses-vars': '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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"semi": false, | ||
"tabWidth": 2, | ||
"useTabs": false, | ||
"printWidth": 80, | ||
"endOfLine": "auto", | ||
"singleQuote": true, | ||
"trailingComma": "es5", | ||
"bracketSpacing": true, | ||
"arrowParens": "always" | ||
"semi": true, | ||
"tabWidth": 4, | ||
"useTabs": false, | ||
"printWidth": 80, | ||
"endOfLine": "auto", | ||
"singleQuote": true, | ||
"trailingComma": "es5", | ||
"bracketSpacing": true, | ||
"arrowParens": "always" | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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.