keycloak-modern-login/.eslintcache

1 line
22 KiB
Plaintext
Raw Permalink Normal View History

2023-02-19 02:02:36 +01:00
[{"/home/oliver/git-repos/keycloak-theme-vuejs/src/components/ErrorBox.vue":"1","/home/oliver/git-repos/keycloak-theme-vuejs/src/components/Layout.vue":"2","/home/oliver/git-repos/keycloak-theme-vuejs/src/shims-vue.d.ts":"3","/home/oliver/git-repos/keycloak-theme-vuejs/src/types/context.ts":"4","/home/oliver/git-repos/keycloak-theme-vuejs/src/views/login/index.ts":"5","/home/oliver/git-repos/keycloak-theme-vuejs/src/views/login/index.vue":"6","/home/oliver/git-repos/keycloak-theme-vuejs/src/views/webauthn-authenticate/index.ts":"7","/home/oliver/git-repos/keycloak-theme-vuejs/src/views/webauthn-authenticate/index.vue":"8","/home/oliver/git-repos/keycloak-theme-vuejs/tailwind.config.js":"9","/home/oliver/git-repos/keycloak-theme-vuejs/webpack.config.js":"10"},{"size":334,"mtime":1676764735273,"results":"11","hashOfConfig":"12"},{"size":703,"mtime":1676744043737,"results":"13","hashOfConfig":"12"},{"size":146,"mtime":1676768217528,"results":"14","hashOfConfig":"12"},{"size":10105,"mtime":1676767602409,"results":"15","hashOfConfig":"12"},{"size":155,"mtime":1676744043933,"results":"16","hashOfConfig":"12"},{"size":3456,"mtime":1676764735457,"results":"17","hashOfConfig":"12"},{"size":155,"mtime":1676744043997,"results":"18","hashOfConfig":"12"},{"size":6913,"mtime":1676768178300,"results":"19","hashOfConfig":"12"},{"size":144,"mtime":1676744044069,"results":"20","hashOfConfig":"12"},{"size":3277,"mtime":1676767942024,"results":"21","hashOfConfig":"12"},{"filePath":"22","messages":"23","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"yepsnx",{"filePath":"24","messages":"25","errorCount":2,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"source":"26"},{"filePath":"27","messages":"28","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"29","messages":"30","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"31","messages":"32","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"33","messages":"34","errorCount":5,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"source":"35"},{"filePath":"36","messages":"37","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"38","messages":"39","errorCount":12,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"source":"40"},{"filePath":"41","messages":"42","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"43","messages":"44","errorCount":1,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"source":"45"},"/home/oliver/git-repos/keycloak-theme-vuejs/src/components/ErrorBox.vue",[],"/home/oliver/git-repos/keycloak-theme-vuejs/src/components/Layout.vue",["46","47"],"<template>\n <div\n :class=\"\n 'flex flex-col min-h-screen w-full md:w-1/2 lg:w-1/3 max-w-none md:max-w-2xl bg-gray-50 md:rounded-r-3xl shadow-2xl bg-[url(\\'' +\n context.url.resourcesPath +\n '/img/background.jpg\\')] bg-no-repeat bg-center bg-cover font-sans overflow-hidden'\n \">\n <div class=\"flex flex-grow flex-col justify-center w-full px-8 md:px-20\">\n <slot></slot>\n </div>\n </div>\n</template>\n<script lang=\"ts\">\nimport { defineComponent } from \"vue\";\nimport { KcContextBase } from \"~/types/context\";\n\nexport default defineComponent({\n name: \"Layout\",\n data() {\n return {\n context: (window as any).kcContext as KcContextBase.Common,\n };\n },\n});\n</script>\n","/home/oliver/git-repos/keycloak-theme-vuejs/src/shims-vue.d.ts",[],"/home/oliver/git-repos/keycloak-theme-vuejs/src/types/context.ts",[],"/home/oliver/git-repos/keycloak-theme-vuejs/src/views/login/index.ts",[],"/home/oliver/git-repos/keycloak-theme-vuejs/src/views/login/index.vue",["48","49","50","51","52"],"<template>\n <la