Commit a35aabef authored by Дмитрий Малюгин's avatar Дмитрий Малюгин 🕓
Browse files

Merge master into main

parents e551807b 9ff43c9c
Loading
Loading
Loading
Loading
+79 −0
Original line number Diff line number Diff line
{
  "javascript": {
    "globals": [
      "Component",
      "ComponentPublicInstance",
      "ComputedRef",
      "EffectScope",
      "ExtractDefaultPropTypes",
      "ExtractPropTypes",
      "ExtractPublicPropTypes",
      "InjectionKey",
      "PropType",
      "Ref",
      "RouteLocationRaw",
      "VNode",
      "WritableComputedRef",
      "[alias]",
      "[import-names]",
      "axios",
      "computed",
      "createApp",
      "customRef",
      "defineAsyncComponent",
      "defineComponent",
      "effectScope",
      "getCurrentInstance",
      "getCurrentScope",
      "h",
      "inject",
      "isProxy",
      "isReactive",
      "isReadonly",
      "isRef",
      "markRaw",
      "nextTick",
      "onActivated",
      "onBeforeMount",
      "onBeforeRouteLeave",
      "onBeforeRouteUpdate",
      "onBeforeUnmount",
      "onBeforeUpdate",
      "onDeactivated",
      "onErrorCaptured",
      "onMounted",
      "onRenderTracked",
      "onRenderTriggered",
      "onScopeDispose",
      "onServerPrefetch",
      "onUnmounted",
      "onUpdated",
      "provide",
      "reactive",
      "readonly",
      "ref",
      "resolveComponent",
      "shallowReactive",
      "shallowReadonly",
      "shallowRef",
      "toRaw",
      "toRef",
      "toRefs",
      "toValue",
      "triggerRef",
      "unref",
      "useAttrs",
      "useCssModule",
      "useCssVars",
      "useLink",
      "useMyFetch",
      "useRoute",
      "useRouter",
      "useSlots",
      "watch",
      "watchEffect",
      "watchPostEffect",
      "watchSyncEffect"
    ]
  }
}
 No newline at end of file

.eslintrc.cjs

0 → 100644
+18 −0
Original line number Diff line number Diff line
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')

module.exports = {
  root: true,
  'extends': [
    'plugin:vue/vue3-essential',
    'eslint:recommended',
    '@vue/eslint-config-typescript',
    '@vue/eslint-config-prettier/skip-formatting'
  ],
  parserOptions: {
    ecmaVersion: 'latest'
  },
  rules: {
    "no-undef": "off",
  }
}

.gitignore

0 → 100644
+30 −0
Original line number Diff line number Diff line
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
.DS_Store
dist
dist-ssr
coverage
*.local

/cypress/videos/
/cypress/screenshots/

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

*.tsbuildinfo

.prettierrc.json

0 → 100644
+8 −0
Original line number Diff line number Diff line
{
  "$schema": "https://json.schemastore.org/prettierrc",
  "semi": true,
  "tabWidth": 2,
  "singleQuote": true,
  "printWidth": 100,
  "trailingComma": "none"
}
 No newline at end of file
+7 −0
Original line number Diff line number Diff line
{
  "recommendations": [
    "Vue.volar",
    "dbaeumer.vscode-eslint",
    "esbenp.prettier-vscode"
  ]
}
Loading