Skip to content

Commit da42db8

Browse files
authored
Merge pull request #478 from q-masters/development
version 1.0.0
2 parents 620b4a1 + c5d2080 commit da42db8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1020
-1451
lines changed

docs/contribute.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ cd vsqlik/src && npm i
2424

2525
sometimes it is helpfull to share the extension from development state (next release), this could be done with running, and then share the vsix file which can imported into visual studio code.
2626

27-
```
27+
```bash
28+
cd vsqlik/src
29+
npm ci # ensure we are up to date
2830
npm run vsce:package
2931
```
3032

docs/media/load-data-command.png

38.1 KB
Loading

docs/media/load-data-log.png

79.1 KB
Loading

docs/media/load-data.png

118 KB
Loading

docs/reload-data.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Reload (Dataload) Script
2+
3+
to reload (dataload) script just open the script file (main.qvs) in the editor now you have 2 options to load the data into your script.
4+
5+
- press the icon top left in the editor toolbar
6+
![load-data icon](./media/load-data.png)
7+
8+
- press *ctrl + p* and type: **VsQlik: Run...**
9+
![load-data icon](./media/load-data-command.png)
10+
11+
both the command and the icon will only be available if your have open a qvs file inside of your server directory.
12+
13+
After you pressed the icon or execute the command, a new virtual file should show up which shows you the result of your dataload. For every app it will create a new file.
14+
15+
![load-data log](./media/load-data-log.png)

src/.eslintrc.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
},
66
"extends": [
77
"eslint:recommended",
8-
"plugin:@typescript-eslint/eslint-recommended"
8+
"plugin:@typescript-eslint/eslint-recommended",
9+
"plugin:@typescript-eslint/recommended"
910
],
1011
"parserOptions": {
1112
"ecmaVersion": 11,
@@ -34,8 +35,9 @@
3435
"eol-last": "error",
3536
"no-trailing-spaces": ["error"],
3637
"no-unused-vars": "off",
38+
"@typescript-eslint/no-unused-vars": "off",
39+
"@typescript-eslint/no-explicit-any": "off",
3740
// "no-console": ["error", {"allow": ["error", "warn"]}],
38-
"@typescript-eslint/no-unused-vars": ["error"],
3941
"@typescript-eslint/restrict-template-expressions": ["error", {
4042
"allowAny": true
4143
}]

src/.vscodeignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ tsconfig.json
1111
!dist/extension.js
1212
!dist/webview
1313
!vscode4qlik.png
14-
!README.md
14+
!README.md
15+
!projects/media/icons/*

0 commit comments

Comments
 (0)