Skip to content
This repository was archived by the owner on Oct 20, 2023. It is now read-only.

Commit a51aad3

Browse files
committed
fix(dependencies): Fix linting errors caused by eslint update
1 parent 09fb881 commit a51aad3

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

generators/app/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ module.exports = class extends Generator {
6565
this.destinationPath('.gitignore')
6666
);
6767

68-
// Meta Files
68+
// Meta Files
6969
this.fs.copy(
7070
this.templatePath('LICENSE'),
7171
this.destinationPath('LICENSE')
@@ -87,7 +87,7 @@ module.exports = class extends Generator {
8787
this.destinationPath('yarn.lock')
8888
);
8989

90-
// Root JS files
90+
// Root JS files
9191
this.fs.copy(
9292
this.templatePath('config.js'),
9393
this.destinationPath('config.js')
@@ -107,19 +107,19 @@ module.exports = class extends Generator {
107107
this.destinationPath('server.js')
108108
);
109109

110-
// JSON templates
110+
// JSON templates
111111
this.fs.copy(
112112
this.templatePath('json-templates/gitkeep'),
113113
this.destinationPath('json-templates/.gitkeep')
114114
);
115115

116-
// Server files
116+
// Server files
117117
this.fs.copy(
118118
this.templatePath('server'),
119119
this.destinationPath('server')
120120
);
121121

122-
// Test files
122+
// Test files
123123
this.fs.copy(
124124
this.templatePath('test'),
125125
this.destinationPath('test')

generators/endpoint/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ const titleCase = require('title-case');
77
const helper = require('./promptingHelpers');
88

99
module.exports = class extends Generator {
10-
1110
prompting() {
1211
const done = this.async();
1312

0 commit comments

Comments
 (0)