Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 391 remove unused imports #394

Open
wants to merge 2 commits into
base: devel
Choose a base branch
from
Open
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
3 changes: 0 additions & 3 deletions src/components/Authentication/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,6 @@
</template>

<script>
import { mapState } from 'vuex';
import { HTTP } from '../../http-common';

export default {
data() {
return {
Expand Down
1 change: 0 additions & 1 deletion src/components/GitHub/GitHubCallBack.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

<script>
import { mapState } from 'vuex';
import { HTTP } from '../../http-common';

export default {
data() {
Expand Down
1 change: 0 additions & 1 deletion src/components/Issues/AddIssue.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
</template>

<script>
import { EventBus } from '../../event-bus.js';
import { HTTP } from '../../http-common.js';
import { mapState } from 'vuex';

Expand Down
1 change: 0 additions & 1 deletion src/components/Projects/Project.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ import DeleteProject from './DeleteProject.vue';
import EditProject from './EditProject.vue';
import { HTTP } from '../../http-common';
import IssuesGraphic from '../Issues/IssuesGraphic'
import Grade from './Grade.vue'
import AddGrades from '../Projects/AddGrades'

export default {
Expand Down
1 change: 0 additions & 1 deletion src/components/Sprints/Burndown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import { Line } from 'vue-chart-js'
import { HTTP } from '../../http-common';
import { mapState } from 'vuex';
import Sprint from './Sprint.vue';

export default {
extends: Line,
Expand Down
2 changes: 0 additions & 2 deletions src/components/Sprints/Metrics.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@


<script>
import { mapState } from 'vuex';
import { HTTP } from '../../http-common';
import Velocity from './Velocity.vue';
import Burndown from './Burndown.vue';
import Stories from '../Stories/Stories.vue'
Expand Down
2 changes: 0 additions & 2 deletions src/components/Sprints/Sprint.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,8 @@ import DeleteSprint from './DeleteSprint.vue';
import dateConvert from '../../mixins/dateConvert';
import AddRetrospective from '../Retrospective/AddRetrospective.vue';
import AddRevision from '../Revision/AddRevision.vue';
import Revision from '../Revision/Revision.vue';
import Stories from '../Stories/Stories'
import { HTTP } from '../../http-common';
import Velocity from './Velocity.vue';
import Metrics from './Metrics.vue';

export default{
Expand Down
1 change: 0 additions & 1 deletion src/components/Sprints/Velocity.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { Bar } from 'vue-chart-js'
import { Line } from 'vue-chart-js'
import { HTTP } from '../../http-common';
import { mapState } from 'vuex';
import Sprint from './Sprint.vue';

export default {
extends: Bar,
Expand Down
1 change: 0 additions & 1 deletion src/components/Users/ForgotPassword.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@


<script>
import { mapState } from 'vuex';
import { HTTP } from '../../http-common';

export default {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Users/ResetPassword.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
</template>

<script>
import { mapState } from 'vuex';

import { HTTP } from '../../http-common';

export default {
Expand Down
1 change: 0 additions & 1 deletion src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import Issues from '../components/Issues/Issues.vue';
import Velocity from '../components/Sprints/Velocity.vue';
import Burndown from '../components/Sprints/Burndown.vue';
import IssuesGraphic from '../components/Issues/IssuesGraphic.vue';
import Grade from '../components/Projects/Grade.vue';
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This entire module can be removed, since GPA has been deprecated in CC.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right? @MatheusRich

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah. Maybe later we add something else.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should I also remove this file then?

import Revision from '../components/Revision/Revision.vue';
import ForgotPassword from '../components/Users/ForgotPassword.vue';
import ResetPassword from '../components/Users/ResetPassword.vue';
Expand Down
1 change: 0 additions & 1 deletion test/unit/specs/Navbar.spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { shallow, createLocalVue } from 'vue-test-utils'
import { HTTP } from '../../../src/http-common.js';
import Vuex from 'vuex';
import Navbar from '../../../src/components/Navbar.vue';
import sinon from 'sinon';
Expand Down
1 change: 0 additions & 1 deletion test/unit/specs/Projects/Projects.spec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import Vuex from 'vuex';
import sinon from 'sinon';
import VeeValidate from 'vee-validate';
import { shallow, createLocalVue } from 'vue-test-utils';
import { HTTP } from '../../../../src/http-common';
import Projects from '../../../../src/components/Projects/Projects.vue';
Expand Down
1 change: 0 additions & 1 deletion test/unit/specs/Retrospective/AddRetrospective.spec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import Vuex from 'vuex';
import sinon from 'sinon';
import VeeValidate from 'vee-validate';
import { shallow, createLocalVue } from 'vue-test-utils';
import { HTTP } from '../../../../src/http-common';
import AddRetrospective from '../../../../src/components/Retrospective/AddRetrospective.vue';
Expand Down
1 change: 0 additions & 1 deletion test/unit/specs/SprintReviews/ListSprintReview.spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { shallow, createLocalVue } from 'vue-test-utils'
import { HTTP } from '../../../../src/http-common.js';
import Vuex from 'vuex';
import Revision from '../../../../src/components/Revision/ListRevision.vue';
import sinon from 'sinon';
Expand Down