Skip to content

Commit cb5a15f

Browse files
committedMay 28, 2019
chore: lint
1 parent 0782944 commit cb5a15f

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed
 

‎packages/generators/add-generator.ts

+1
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ export default class AddGenerator extends Generator {
117117
mergeFile: string;
118118
}) => {
119119
const resolvedPath = resolve(process.cwd(), mergeFileAnswer.mergeFile);
120+
// eslint-disable-next-line
120121
const mergeConfig = require(resolvedPath);
121122
(this.configuration.config.merge as {
122123
configName?: string;

‎packages/generators/utils/add/index.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,17 @@ import PROP_TYPES from "@webpack-cli/utils/prop-types";
33
export const PROPS: string[] = Array.from(PROP_TYPES.keys());
44

55
// tslint:disable:no-var-requires
6+
// eslint-disable-next-line
67
export const webpackDevServerSchema = require("webpack-dev-server/lib/options.json");
8+
// eslint-disable-next-line
79
export const webpackSchema = require("../optionsSchema.json");
810

911
/**
1012
*
1113
* Replaces the string with a substring at the given index
1214
* https://gist.github.com/efenacigiray/9367920
1315
*
14-
* @param {String} string - string to be modified
16+
* @param {String} str - string to be modified
1517
* @param {Number} index - index to replace from
1618
* @param {String} replace - string to replace starting from index
1719
*
@@ -33,7 +35,7 @@ export function replaceAt(str: string, index: number, replace: string): string {
3335
* is present
3436
*/
3537
export const traverseAndGetProperties = (arr: object[], prop: string): boolean => {
36-
let hasProp: boolean = false;
38+
let hasProp = false;
3739
arr.forEach((p: object): void => {
3840
if (p[prop]) {
3941
hasProp = true;

‎packages/generators/utils/add/questions/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ import { Question } from "inquirer";
1313

1414
/**
1515
* Returns Inquirer question for given action
16-
* @param action string
16+
* @param {string} action
17+
* @returns {Question}
1718
*/
1819
export const manualOrListInput: (action: string) => Question = (action: string) => {
1920
const actionQuestion = `What do you want to add to ${action}?`;

0 commit comments

Comments
 (0)
Please sign in to comment.