Skip to content

Commit

Permalink
Merge pull request #2 from OVINC-CN/feat_rum
Browse files Browse the repository at this point in the history
feat: rum
  • Loading branch information
OrenZhang authored Sep 11, 2023
2 parents c47184d + f0cb254 commit bae6e70
Show file tree
Hide file tree
Showing 19 changed files with 1,445 additions and 1,300 deletions.
3 changes: 0 additions & 3 deletions .eslintignore

This file was deleted.

24 changes: 0 additions & 24 deletions .eslintrc.js

This file was deleted.

34 changes: 34 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: "CodeQL"

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
analyze:
name: Analyze
runs-on: 'ubuntu-latest'
timeout-minutes: 360
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"
54 changes: 44 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,57 @@
"build": "vite build",
"serve": "vite preview"
},
"eslintConfig": {
"root": true,
"parser": "vue-eslint-parser",
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module"
},
"env": {
"browser": true,
"es6": true
},
"globals": {
"defineProps": "readonly",
"defineEmits": "readonly"
},
"extends": [
"plugin:vue/vue3-strongly-recommended",
"@tencent/eslint-config-tencent"
],
"rules": {
"vue/no-side-effects-in-computed-properties": "off",
"vue/multi-word-component-names": "off",
"max-len": "off",
"no-param-reassign": "off",
"no-unused-vars": "off"
},
"ignorePatterns": [
"dist/",
"public/",
"node_modules/"
]
},
"dependencies": {
"axios": "^0.27.2",
"aegis-web-sdk": "^1.37.9",
"axios": "^1.5.0",
"moment": "^2.29.4",
"vue": "^3.3.4",
"vue-axios": "^3.5.2",
"vue-i18n": "^9.2.2",
"vue-i18n": "^9.3.0",
"vue-router": "^4.2.4",
"vuex": "^4.1.0"
},
"devDependencies": {
"@arco-design/web-vue": "^2.50.2",
"@microsoft/eslint-formatter-sarif": "2.1.7",
"@vitejs/plugin-vue": "^2.3.4",
"eslint": "8.22.0",
"eslint-plugin-vue": "^8.7.1",
"standard": "^16.0.4",
"vite": "^2.9.16",
"vue-eslint-parser": "^8.3.0"
"@arco-design/web-vue": "^2.51.0",
"@microsoft/eslint-formatter-sarif": "3.0.0",
"@tencent/eslint-config-tencent": "^1.0.4",
"@vitejs/plugin-vue": "^4.3.4",
"eslint": "8.48.0",
"eslint-plugin-vue": "^9.17.0",
"standard": "^17.1.0",
"vite": "^4.4.9",
"vue-eslint-parser": "^9.3.1"
}
}
Loading

0 comments on commit bae6e70

Please sign in to comment.