Skip to content

Commit 6910c0e

Browse files
committed
solve deepscan warning (high & half of light)
1 parent 9af7e45 commit 6910c0e

File tree

6 files changed

+5
-22
lines changed

6 files changed

+5
-22
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
[![Tested with TestCafe](https://img.shields.io/badge/tested%20with-TestCafe-2fa4cf.svg)](https://github.com/DevExpress/testcafe)
66
[![Build Status](https://travis-ci.org/Rebolon/php-sf-flex-webpack-encore-vuejs.png?branch=master)](https://travis-ci.org/Rebolon/php-sf-flex-webpack-encore-vuejs)
77
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/Rebolon/php-sf-flex-webpack-encore-vuejs/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/Rebolon/php-sf-flex-webpack-encore-vuejs/badges/quality-score.png?b=master)
8+
[![DeepScan grade](https://deepscan.io/api/teams/2301/projects/3192/branches/26485/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=2301&pid=3192&bid=26485)
89
[![Known Vulnerabilities](https://snyk.io/test/github/rebolon/php-sf-flex-webpack-encore-vuejs/badge.svg?targetFile=package.json)](https://snyk.io/test/github/rebolon/php-sf-flex-webpack-encore-vuejs?targetFile=package.json)
910
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2FRebolon%2Fphp-sf-flex-webpack-encore-vuejs.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2FRebolon%2Fphp-sf-flex-webpack-encore-vuejs?ref=badge_shield)
1011

assets/js/form-quasar-vuejs/components/Books.vue

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,9 @@
1919

2020
<script>
2121
import {
22-
QToolbar,
23-
QToolbarTitle,
2422
QTable,
25-
QTooltip,
26-
QItem,
27-
QItemMain,
28-
QItemTile,
29-
QBtn,
3023
} from 'quasar-framework/dist/quasar.mat.esm'
3124
32-
import Book from './Book.vue'
3325
import gql from 'graphql-tag'
3426
import { axiosJsonLd } from '../../lib/axiosMiddlewares'
3527
import { apiPlatformPrefix, apiConfig } from '../../lib/config'
@@ -38,15 +30,7 @@ import { BooksTableDefinition } from '../dataTableDefinitions/Books'
3830
export default {
3931
name: 'Books',
4032
components: {
41-
QToolbar,
42-
QToolbarTitle,
4333
QTable,
44-
QTooltip,
45-
QItem,
46-
QItemMain,
47-
QItemTile,
48-
QBtn,
49-
Book,
5034
},
5135
data() {
5236
return {
@@ -111,7 +95,7 @@ export default {
11195
// prevent response analyse
11296
if (!res || !res.data) {
11397
return
114-
}Movies.com
98+
}
11599
116100
let content = res.data
117101

assets/js/login/components/Login.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ export default {
6464
QInput,
6565
QBtn,
6666
QSpinnerCircles,
67-
Notify,
6867
},
6968
props: ['redirect', 'loginUri', 'loggedInUri'],
7069
data() {

assets/js/login/components/Secured.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ export default {
2020
components: {
2121
QToolbar,
2222
QToolbarTitle,
23-
QSpinnerCircles,
24-
Notify
23+
QSpinnerCircles
2524
},
2625
props: ['loggedInUri'],
2726
data() {

assets/tests/login-js.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Selector, ClientFunction } from 'testcafe'
2-
import {StandardVueJSAccUser, usernameStd, passwordStd, scheme} from './tools/authentification'
2+
import {StandardVueJSAccUser, scheme} from './tools/authentification'
33
import { jsLoginFormPath, jsLoginSuccessPath } from './tools/uris'
44
import { host, csrfParameter } from '../js/lib/config'
55

assets/tests/menu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Selector } from 'testcafe'
2-
import { host, port } from '../js/lib/config'
2+
import { host } from '../js/lib/config'
33
import {scheme} from "./tools/authentification";
44

55
fixture `Test homepage`

0 commit comments

Comments
 (0)