Commit 22c96c5d authored by Paul Slaughter's avatar Paul Slaughter

EE specific updates for eslint no-param-reassign rule

parent 0fc8214a
...@@ -5,6 +5,7 @@ const Store = gl.issueBoards.BoardsStore; ...@@ -5,6 +5,7 @@ const Store = gl.issueBoards.BoardsStore;
export default base.extend({ export default base.extend({
methods: { methods: {
seedPatchRequest(issue, req) { seedPatchRequest(issue, req) {
/* eslint-disable no-param-reassign */
const board = Store.state.currentBoard; const board = Store.state.currentBoard;
const boardLabelIds = board.labels.map(label => label.id); const boardLabelIds = board.labels.map(label => label.id);
......
/* eslint-disable no-param-reassign */
import Vue from 'vue'; import Vue from 'vue';
import * as types from './mutation_types'; import * as types from './mutation_types';
import { import {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment