Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions client/examples/cargo/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
cffi==1.16.0
cryptography==42.0.8
cryptography==46.0.5
grpcio==1.64.1
grpcio-reflection==1.64.1
grpcio-tools==1.64.1
protobuf==5.27.1
protobuf==5.29.6
pycparser==2.22
PyJWT==2.8.0
6 changes: 3 additions & 3 deletions client/examples/inventory/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ cffi==1.16.0
channels==4.1.0
click==8.1.7
constantly==23.10.4
cryptography==42.0.5
cryptography==46.0.5
daphne==4.1.2
Django==5.0.7
Django==5.1.14
grpcio==1.64.1
grpcio-tools==1.64.1
hyperlink==21.0.0
idna==3.7
incremental==22.10.0
Jinja2==3.1.4
MarkupSafe==2.1.5
protobuf==5.27.1
protobuf==5.29.6
pyasn1==0.6.0
pyasn1_modules==0.4.0
pycparser==2.22
Expand Down
2 changes: 1 addition & 1 deletion client/examples/request/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
blinker==1.8.1
cffi==1.16.0
click==8.1.7
cryptography==42.0.5
cryptography==46.0.5
Flask==3.0.3
itsdangerous==2.2.0
Jinja2==3.1.4
Expand Down
2 changes: 1 addition & 1 deletion client/pystokeauth/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cffi==1.16.0
cryptography==44.0.1
cryptography==46.0.5
pycparser==2.22
PyJWT==2.8.0
18 changes: 10 additions & 8 deletions internal/admin/stoke-admin-ui/.eslintrc-auto-import.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,18 @@
"Component": true,
"ComponentPublicInstance": true,
"ComputedRef": true,
"DirectiveBinding": true,
"EffectScope": true,
"ExtractDefaultPropTypes": true,
"ExtractPropTypes": true,
"ExtractPublicPropTypes": true,
"InjectionKey": true,
"MaybeRef": true,
"MaybeRefOrGetter": true,
"PropType": true,
"Ref": true,
"Slot": true,
"Slots": true,
"VNode": true,
"WritableComputedRef": true,
"computed": true,
Expand Down Expand Up @@ -41,6 +46,7 @@
"onServerPrefetch": true,
"onUnmounted": true,
"onUpdated": true,
"onWatcherCleanup": true,
"provide": true,
"reactive": true,
"readonly": true,
Expand All @@ -58,19 +64,15 @@
"useAttrs": true,
"useCssModule": true,
"useCssVars": true,
"useId": true,
"useModel": true,
"useRoute": true,
"useRouter": true,
"useSlots": true,
"useTemplateRef": true,
"watch": true,
"watchEffect": true,
"watchPostEffect": true,
"watchSyncEffect": true,
"DirectiveBinding": true,
"MaybeRef": true,
"MaybeRefOrGetter": true,
"onWatcherCleanup": true,
"useId": true,
"useModel": true,
"useTemplateRef": true
"watchSyncEffect": true
}
}
1 change: 0 additions & 1 deletion internal/admin/stoke-admin-ui/dist/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
*

44 changes: 44 additions & 0 deletions internal/admin/stoke-admin-ui/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
// eslint.config.mjs
import pluginVue from 'eslint-plugin-vue'
import {
defineConfigWithVueTs,
vueTsConfigs,
configureVueProject,
} from '@vue/eslint-config-typescript'

// Optional: configure the Vue project to adjust the strictness of the rulesets or speed up linting.
configureVueProject({
// Whether to parse TypeScript syntax in Vue templates.
// Defaults to `true`.
// Setting it to `false` could improve performance.
// But TypeScript syntax in Vue templates will then lead to syntax errors.
// Also, type-aware rules won't be applied to expressions in templates in that case.
tsSyntaxInTemplates: true,

// Whether to override some `no-unsafe-*` rules to avoid false positives on Vue component operations.
// Defaults to `true`.
// Usually you should keep this enabled,
// but if you're using a metaframework or in a TSX-only project
// where you're certain you won't operate on `.vue` components in a way that violates the rules,
// and you want the strictest rules (e.g. when extending from `strictTypeChecked`),
// you can set this to `false` to ensure the strictest rules apply to all files.
allowComponentTypeUnsafety: true,

// The root directory to resolve the `.vue` files.
// Defaults to `process.cwd()`.
// More info: <https://github.com/vuejs/eslint-plugin-vue/issues/1910#issuecomment-1819993961>
// You may need to set this to the root directory of your project if you have a monorepo.
// This is useful when you allow any other languages than `ts` in `.vue` files.
// Our config helper would resolve and parse all the `.vue` files under `rootDir`,
// and only apply the loosened rules to the files that do need them.
rootDir: import.meta.dirname,
})

export default defineConfigWithVueTs(
pluginVue.configs["flat/essential"],

// We STRONGLY RECOMMEND you to start with `recommended` or `recommendedTypeChecked`.
// But if you are determined to configure all rules by yourself,
// you can start with `base`, and then turn on/off the rules you need.
vueTsConfigs.base,
)
Loading
Loading