locust-cloud 1.11.8__py3-none-any.whl → 1.12.1__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.
@@ -8,7 +8,7 @@
8
8
  <meta name="theme-color" content="#000000" />
9
9
 
10
10
  <title>Locust Cloud</title>
11
- <script type="module" crossorigin src="./assets/index-CDB_B7pM.js"></script>
11
+ <script type="module" crossorigin src="./assets/index-BoNYN-22.js"></script>
12
12
  </head>
13
13
  <body>
14
14
  <div id="root"></div>
@@ -0,0 +1,82 @@
1
+ import react from 'eslint-plugin-react';
2
+ import reactHooks from 'eslint-plugin-react-hooks';
3
+ import typescriptEslint from '@typescript-eslint/eslint-plugin';
4
+ import prettier from 'eslint-plugin-prettier';
5
+ import unusedImports from 'eslint-plugin-unused-imports';
6
+ import _import from 'eslint-plugin-import';
7
+ import { fixupPluginRules } from '@eslint/compat';
8
+ import tsParser from '@typescript-eslint/parser';
9
+ import path from 'node:path';
10
+ import { fileURLToPath } from 'node:url';
11
+ import js from '@eslint/js';
12
+ import { FlatCompat } from '@eslint/eslintrc';
13
+
14
+ const __filename = fileURLToPath(import.meta.url);
15
+ const __dirname = path.dirname(__filename);
16
+ const compat = new FlatCompat({
17
+ baseDirectory: __dirname,
18
+ recommendedConfig: js.configs.recommended,
19
+ allConfig: js.configs.all,
20
+ });
21
+
22
+ export default [
23
+ ...compat.extends('plugin:@typescript-eslint/recommended'),
24
+ {
25
+ plugins: {
26
+ react,
27
+ 'react-hooks': fixupPluginRules(reactHooks),
28
+ '@typescript-eslint': typescriptEslint,
29
+ prettier,
30
+ 'unused-imports': unusedImports,
31
+ import: fixupPluginRules(_import),
32
+ },
33
+
34
+ languageOptions: {
35
+ parser: tsParser,
36
+ },
37
+
38
+ rules: {
39
+ 'react/display-name': 'off',
40
+ '@typescript-eslint/no-explicit-any': 'off',
41
+ 'no-console': 'error',
42
+ 'react/jsx-sort-props': 2,
43
+ 'react/sort-prop-types': 2,
44
+
45
+ 'import/order': [
46
+ 'error',
47
+ {
48
+ groups: ['external', 'internal'],
49
+ 'newlines-between': 'always',
50
+
51
+ alphabetize: {
52
+ order: 'asc',
53
+ caseInsensitive: true,
54
+ },
55
+
56
+ pathGroups: [
57
+ {
58
+ pattern: 'react',
59
+ group: 'external',
60
+ position: 'before',
61
+ },
62
+ {
63
+ pattern: 'App',
64
+ group: 'internal',
65
+ },
66
+ {
67
+ pattern: 'Report',
68
+ group: 'internal',
69
+ },
70
+ {
71
+ pattern: '{components,hooks,redux,types,utils}/**',
72
+ group: 'internal',
73
+ },
74
+ ],
75
+
76
+ distinctGroup: false,
77
+ pathGroupsExcludedImportTypes: ['internal'],
78
+ },
79
+ ],
80
+ },
81
+ },
82
+ ];
@@ -16,26 +16,29 @@
16
16
  "@emotion/styled": "^11.11.5",
17
17
  "@mui/icons-material": "^5.16.4",
18
18
  "@mui/material": "^5.16.4",
19
- "locust-ui": "^2.32.2",
19
+ "locust-ui": "^2.32.4",
20
20
  "react": "^18.3.1",
21
21
  "react-dom": "^18.3.1",
22
22
  "react-redux": "^9.1.2",
23
23
  "vite-tsconfig-paths": "^4.3.2"
24
24
  },
25
25
  "devDependencies": {
26
+ "@eslint/compat": "^1.2.3",
27
+ "@eslint/eslintrc": "^3.2.0",
28
+ "@eslint/js": "^9.16.0",
26
29
  "@types/react": "^18.2.0",
27
30
  "@types/react-dom": "^18.2.0",
28
- "@typescript-eslint/eslint-plugin": "^6.7.2",
29
- "@typescript-eslint/parser": "^6.7.2",
31
+ "@typescript-eslint/eslint-plugin": "^8.16.0",
32
+ "@typescript-eslint/parser": "^8.16.0",
30
33
  "@vitejs/plugin-react-swc": "^3.7.0",
31
- "eslint": "^8.50.0",
32
- "eslint-plugin-import": "^2.28.1",
33
- "eslint-plugin-prettier": "^5.0.0",
34
- "eslint-plugin-react": "^7.33.2",
35
- "eslint-plugin-react-hooks": "^4.6.0",
36
- "eslint-plugin-unused-imports": "^3.0.0",
37
- "prettier": "^3.0.3",
38
- "typescript": "^5.5.3",
39
- "vite": "^5.4.8"
34
+ "eslint": "^9.16.0",
35
+ "eslint-plugin-import": "^2.31.0",
36
+ "eslint-plugin-prettier": "^5.2.1",
37
+ "eslint-plugin-react": "^7.37.2",
38
+ "eslint-plugin-react-hooks": "^5.0.0",
39
+ "eslint-plugin-unused-imports": "^4.1.4",
40
+ "prettier": "^3.4.1",
41
+ "typescript": "^5.7.2",
42
+ "vite": "^6.0.1"
40
43
  }
41
44
  }