Skip to content

Commit 98dbc04

Browse files
Add Recent Activity panel (#256)
Add Recent Activity panel Co-authored-by: Roni Dover <[email protected]>
1 parent b7350ea commit 98dbc04

26 files changed

+2845
-1443
lines changed

β€Ž.eslintrc.js

Lines changed: 38 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,40 @@
11
module.exports = {
2-
env: {
3-
browser: true,
4-
jquery: true,
5-
es2021: true,
6-
node: true
7-
},
8-
root: true,
9-
extends: [
10-
// "eslint:recommended",
11-
// "plugin:@typescript-eslint/recommended",
12-
// "plugin:@typescript-eslint/recommended-requiring-type-checking",
13-
"prettier"
14-
],
15-
parser: "@typescript-eslint/parser",
16-
parserOptions: {
17-
tsconfigRootDir: __dirname,
18-
project: "./tsconfig.eslint.json",
19-
ecmaVersion: 13,
20-
sourceType: "module"
21-
},
22-
plugins: ["@typescript-eslint"],
23-
rules: {
24-
/* eslint-disable @typescript-eslint/naming-convention */
25-
"@typescript-eslint/naming-convention": "warn",
26-
"@typescript-eslint/semi": "warn",
27-
curly: "warn",
28-
eqeqeq: "warn",
29-
"no-throw-literal": "warn",
30-
semi: "off"
31-
/* eslint-enable @typescript-eslint/naming-convention */
32-
},
33-
ignorePatterns: [
34-
"jaegerUi",
35-
"out",
36-
"src/views-ui/common/jquery-3.6.0.min.js",
37-
"src/views-ui/common/require-2.3.6.min.js"
38-
]
2+
env: {
3+
browser: true,
4+
jquery: true,
5+
es2021: true,
6+
node: true
7+
},
8+
root: true,
9+
extends: [
10+
// "eslint:recommended",
11+
// "plugin:@typescript-eslint/recommended",
12+
// "plugin:@typescript-eslint/recommended-requiring-type-checking",
13+
"prettier"
14+
],
15+
parser: "@typescript-eslint/parser",
16+
parserOptions: {
17+
tsconfigRootDir: __dirname,
18+
project: "./tsconfig.eslint.json",
19+
ecmaVersion: 13,
20+
sourceType: "module"
21+
},
22+
plugins: ["@typescript-eslint"],
23+
rules: {
24+
/* eslint-disable @typescript-eslint/naming-convention */
25+
"@typescript-eslint/naming-convention": "warn",
26+
"@typescript-eslint/semi": "warn",
27+
curly: "warn",
28+
eqeqeq: "warn",
29+
"no-throw-literal": "warn",
30+
semi: "off"
31+
/* eslint-enable @typescript-eslint/naming-convention */
32+
},
33+
ignorePatterns: [
34+
"digmaUi",
35+
"jaegerUi",
36+
"out",
37+
"src/views-ui/common/jquery-3.6.0.min.js",
38+
"src/views-ui/common/require-2.3.6.min.js"
39+
]
3940
};

β€Ž.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
digmaUi/
12
jaegerUi/
23
out/
34
package.json

β€Ž.prettierrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"trailingComma": "none",
3-
"tabWidth": 4
2+
"trailingComma": "none",
3+
"tabWidth": 4
44
}

β€Ž.vscode/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
},
99
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
1010
"typescript.tsc.autoDetect": "off",
11-
// "editor.formatOnSave": true,
11+
"editor.formatOnSave": true,
1212
"editor.tabSize": 4,
1313
"editor.detectIndentation": false,
1414
"editor.codeActionsOnSave": {
15-
// "source.organizeImports": true
15+
"source.organizeImports": true
1616
},
1717
"[javascript][typescript][json][jsonc][scss]": {
1818
"editor.defaultFormatter": "esbenp.prettier-vscode"

β€Ž.vscodeignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
.husky/
33
.vscode/
44
.vscode-test/
5+
digmaUi/
56
jaegerUi/
67
src/
78
out/test/

β€ŽdigmaUi/fonts/Nunito-Bold.ttf

129 KB
Binary file not shown.

β€ŽdigmaUi/fonts/Nunito-Medium.ttf

129 KB
Binary file not shown.

β€ŽdigmaUi/fonts/Nunito-Regular.ttf

129 KB
Binary file not shown.

β€ŽdigmaUi/fonts/Nunito-SemiBold.ttf

129 KB
Binary file not shown.

β€ŽdigmaUi/main.js

Lines changed: 300 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)