locust-cloud 1.12.4__py3-none-any.whl → 1.13.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,20 +0,0 @@
1
- <!doctype html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="utf-8" />
5
- <link rel="shortcut icon" href="./assets/favicon-light.png" media="(prefers-color-scheme: light)">
6
- <link rel="shortcut icon" href="./assets/favicon-dark.png" media="(prefers-color-scheme: dark)">
7
- <meta name="viewport" content="width=device-width, initial-scale=1" />
8
- <meta name="theme-color" content="#000000" />
9
-
10
- <title>Locust Cloud</title>
11
- <script type="module" crossorigin src="./assets/index-D3YieuNV.js"></script>
12
- </head>
13
- <body>
14
- <div id="root"></div>
15
-
16
- <script>
17
- window.templateArgs = {{ template_args|tojson }}
18
- </script>
19
- </body>
20
- </html>
@@ -1,83 +0,0 @@
1
- import { fixupPluginRules } from '@eslint/compat';
2
- import { FlatCompat } from '@eslint/eslintrc';
3
- import js from '@eslint/js';
4
- import typescriptEslint from '@typescript-eslint/eslint-plugin';
5
- import tsParser from '@typescript-eslint/parser';
6
- import _import from 'eslint-plugin-import';
7
- import prettier from 'eslint-plugin-prettier';
8
- import react from 'eslint-plugin-react';
9
- import reactHooks from 'eslint-plugin-react-hooks';
10
- import unusedImports from 'eslint-plugin-unused-imports';
11
-
12
- import path from 'node:path';
13
- import { fileURLToPath } from 'node:url';
14
-
15
- const __filename = fileURLToPath(import.meta.url);
16
- const __dirname = path.dirname(__filename);
17
- const compat = new FlatCompat({
18
- baseDirectory: __dirname,
19
- recommendedConfig: js.configs.recommended,
20
- allConfig: js.configs.all,
21
- });
22
-
23
- export default [
24
- ...compat.extends('plugin:@typescript-eslint/recommended'),
25
- {
26
- plugins: {
27
- react,
28
- 'react-hooks': fixupPluginRules(reactHooks),
29
- '@typescript-eslint': typescriptEslint,
30
- prettier,
31
- 'unused-imports': unusedImports,
32
- import: fixupPluginRules(_import),
33
- },
34
-
35
- languageOptions: {
36
- parser: tsParser,
37
- },
38
-
39
- rules: {
40
- 'react/display-name': 'off',
41
- '@typescript-eslint/no-explicit-any': 'off',
42
- 'no-console': 'error',
43
- 'react/jsx-sort-props': 2,
44
- 'react/sort-prop-types': 2,
45
-
46
- 'import/order': [
47
- 'error',
48
- {
49
- groups: ['external', 'internal'],
50
- 'newlines-between': 'always',
51
-
52
- alphabetize: {
53
- order: 'asc',
54
- caseInsensitive: true,
55
- },
56
-
57
- pathGroups: [
58
- {
59
- pattern: 'react',
60
- group: 'external',
61
- position: 'before',
62
- },
63
- {
64
- pattern: 'App',
65
- group: 'internal',
66
- },
67
- {
68
- pattern: 'Report',
69
- group: 'internal',
70
- },
71
- {
72
- pattern: '{components,hooks,redux,test,types,utils}/**',
73
- group: 'internal',
74
- },
75
- ],
76
-
77
- distinctGroup: false,
78
- pathGroupsExcludedImportTypes: ['internal'],
79
- },
80
- ],
81
- },
82
- },
83
- ];
@@ -1,20 +0,0 @@
1
- <!doctype html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="utf-8" />
5
- <link rel="shortcut icon" href="./assets/favicon-light.png" media="(prefers-color-scheme: light)">
6
- <link rel="shortcut icon" href="./assets/favicon-dark.png" media="(prefers-color-scheme: dark)">
7
- <meta name="viewport" content="width=device-width, initial-scale=1" />
8
- <meta name="theme-color" content="#000000" />
9
-
10
- <title>Locust Cloud</title>
11
- </head>
12
- <body>
13
- <div id="root"></div>
14
-
15
- <script>
16
- window.templateArgs = {{ template_args|tojson }}
17
- </script>
18
- <script type="module" src="./src/index.tsx"></script>
19
- </body>
20
- </html>
@@ -1,52 +0,0 @@
1
- {
2
- "name": "vite-project",
3
- "private": true,
4
- "version": "0.0.0",
5
- "scripts": {
6
- "dev": "vite",
7
- "dev:watch": "vite build --watch",
8
- "build": "tsc -b && vite build",
9
- "lint": "eslint './src/**/*.{ts,tsx}'",
10
- "format": "prettier --write '**/**/*.{ts,tsx}'",
11
- "type-check": "tsc",
12
- "test": "vitest --silent=false",
13
- "preview": "vite preview"
14
- },
15
- "dependencies": {
16
- "@emotion/react": "^11.11.4",
17
- "@emotion/styled": "^11.11.5",
18
- "@mui/icons-material": "^5.16.4",
19
- "@mui/material": "^5.16.4",
20
- "locust-ui": "^2.32.5-next-12126406497",
21
- "react": "^18.3.1",
22
- "react-dom": "^18.3.1",
23
- "react-redux": "^9.1.2",
24
- "vite-tsconfig-paths": "^4.3.2"
25
- },
26
- "devDependencies": {
27
- "@eslint/compat": "^1.2.3",
28
- "@eslint/eslintrc": "^3.2.0",
29
- "@eslint/js": "^9.16.0",
30
- "@testing-library/dom": "^10.4.0",
31
- "@testing-library/react": "^16.0.1",
32
- "@types/node": "^22.10.1",
33
- "@types/react": "^18.2.0",
34
- "@types/react-dom": "^18.2.0",
35
- "@typescript-eslint/eslint-plugin": "^8.16.0",
36
- "@typescript-eslint/parser": "^8.16.0",
37
- "@vitejs/plugin-react-swc": "^3.7.0",
38
- "eslint": "^9.16.0",
39
- "eslint-plugin-import": "^2.31.0",
40
- "eslint-plugin-prettier": "^5.2.1",
41
- "eslint-plugin-react": "^7.37.2",
42
- "eslint-plugin-react-hooks": "^5.0.0",
43
- "eslint-plugin-unused-imports": "^4.1.4",
44
- "jsdom": "^25.0.1",
45
- "msw": "^2.6.6",
46
- "prettier": "^3.4.1",
47
- "typescript": "^5.7.2",
48
- "vite": "^6.0.1",
49
- "vitest": "^2.1.6",
50
- "vitest-webgl-canvas-mock": "^1.1.0"
51
- }
52
- }
@@ -1,27 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ES2022",
4
- "lib": ["ES2022", "dom", "DOM.Iterable"],
5
- "allowJs": true,
6
- "skipLibCheck": true,
7
- "strict": true,
8
- "forceConsistentCasingInFileNames": true,
9
- "noEmit": true,
10
- "noEmitOnError": true,
11
- "esModuleInterop": true,
12
- "module": "ESNext",
13
- "moduleResolution": "node",
14
- "resolveJsonModule": true,
15
- "isolatedModules": true,
16
- "downlevelIteration": true,
17
- "jsx": "preserve",
18
- "incremental": true,
19
- "baseUrl": ".",
20
- "paths": {
21
- "*": ["src/*"]
22
- }
23
- },
24
- "include": ["src"],
25
- "exclude": ["node_modules"],
26
- "typeRoots": ["src/global.d.ts"]
27
- }