Skip to content

Commit 82b7f45

Browse files
committed
fix(tslint): silence some unnecessary tslint warnings
1 parent 4ef5f25 commit 82b7f45

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

src/cli/inquire.ts

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export async function inquire(): Promise<TypescriptStarterCLIOptions> {
1515
Library = 'lib'
1616
}
1717
const projectTypeQuestion: Question = {
18+
// tslint:disable-next-line:readonly-array
1819
choices: [
1920
{ name: 'Node.js application', value: ProjectType.Node },
2021
{ name: 'Javascript library', value: ProjectType.Library }
@@ -33,6 +34,7 @@ export async function inquire(): Promise<TypescriptStarterCLIOptions> {
3334
};
3435

3536
const runnerQuestion: Question = {
37+
// tslint:disable-next-line:readonly-array
3638
choices: [
3739
{ name: 'npm', value: Runner.Npm },
3840
{ name: 'yarn', value: Runner.Yarn }
@@ -50,6 +52,7 @@ export async function inquire(): Promise<TypescriptStarterCLIOptions> {
5052
}
5153

5254
const typeDefsQuestion: Question = {
55+
// tslint:disable-next-line:readonly-array
5356
choices: [
5457
{
5558
name: `None — the library won't use any globals or modules from Node.js or the DOM`,
@@ -83,6 +86,7 @@ export async function inquire(): Promise<TypescriptStarterCLIOptions> {
8386
vscode = 'vscode'
8487
}
8588
const extrasQuestion: Question = {
89+
// tslint:disable-next-line:readonly-array
8690
choices: [
8791
{
8892
name: 'Enable stricter type-checking',

src/cli/tasks.ts

+2
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ export const cloneRepo = (
6363
const revParseResult = await spawner('git', ['rev-parse', 'HEAD'], {
6464
cwd: projectDir,
6565
encoding: 'utf8',
66+
// tslint:disable-next-line:readonly-array
6667
stdio: ['pipe', 'pipe', inherit]
6768
});
6869
const commitHash = revParseResult.stdout;
@@ -86,6 +87,7 @@ export const getGithubUsername = (fetcher: any) => async (
8687
export const getUserInfo = (spawner: ExecaStatic) => async () => {
8788
const opts: Options = {
8889
encoding: 'utf8',
90+
// tslint:disable-next-line:readonly-array
8991
stdio: ['pipe', 'pipe', inherit]
9092
};
9193
try {

src/cli/typescript-starter.ts

+1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ export async function typescriptStarter(
8787
: {},
8888
description,
8989
devDependencies: filterAllBut(keptDevDeps, pkg.devDependencies),
90+
// tslint:disable-next-line:readonly-array
9091
keywords: [],
9192
name: projectName,
9293
repository: `https://github.com/${githubUsername}/${projectName}`,

src/cli/utils.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ export function validateName(input: string): true | string {
6161
return !validateNpmPackageName(input).validForNewPackages
6262
? 'Name should be in-kebab-case (for npm)'
6363
: existsSync(input)
64-
? `The "${input}" path already exists in this directory.`
65-
: true;
64+
? `The "${input}" path already exists in this directory.`
65+
: true;
6666
}
6767

6868
export function getIntro(columns: number | undefined): string {
@@ -86,6 +86,6 @@ _ _ _ _ _
8686
return columns && columns >= 85
8787
? chalk.bold(gradient.mind(ascii))
8888
: columns && columns >= 74
89-
? chalk.bold(gradient.mind(asciiSmaller))
90-
: `\n${chalk.cyan.bold.underline('typescript-starter')}\n`;
89+
? chalk.bold(gradient.mind(asciiSmaller))
90+
: `\n${chalk.cyan.bold.underline('typescript-starter')}\n`;
9191
}

0 commit comments

Comments
 (0)