Skip to content

Commit c924c7a

Browse files
removed extra lines form end
1 parent 2411e41 commit c924c7a

File tree

224 files changed

+223
-232
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

224 files changed

+223
-232
lines changed

codegens/csharp-httpclient/.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ typings/
4141
# dotenv environment variables file
4242
.env
4343

44-
out/
44+
out/

codegens/csharp-httpclient/.jsdoc-config.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,4 @@
3131
"parser": "gfm",
3232
"hardwrap": false
3333
}
34-
}
35-
34+
}

codegens/csharp-httpclient/.npmignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ typings/
7373

7474
snippet.swift
7575

76-
out/
76+
out/

codegens/csharp-httpclient/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = require('./lib');
1+
module.exports = require('./lib');

codegens/csharp-httpclient/lib/CodeBuilder.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,4 @@ class CodeBuilder {
111111
}
112112
}
113113

114-
module.exports = CodeBuilder;
114+
module.exports = CodeBuilder;

codegens/csharp-httpclient/lib/httpclient.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,4 +156,4 @@ self = module.exports = {
156156

157157
return callback(null, codeBuilder.build(options.includeBoilerplate));
158158
}
159-
};
159+
};
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module.exports = {
22
convert: require('./httpclient').convert,
33
getOptions: require('./httpclient').getOptions
4-
};
4+
};

codegens/csharp-httpclient/lib/lodash.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -452,4 +452,4 @@ module.exports = {
452452
return true;
453453
}
454454

455-
};
455+
};

codegens/csharp-httpclient/lib/parseRequest.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,4 +178,4 @@ function parseBody (builder, request) {
178178
module.exports = {
179179
parseHeader: parseHeader,
180180
parseBody: parseBody
181-
};
181+
};

codegens/csharp-httpclient/lib/util.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,4 @@ module.exports = {
100100
sanitize: sanitize,
101101
csharpify: csharpify,
102102
sanitizeOptions: sanitizeOptions
103-
};
103+
};

codegens/csharp-httpclient/npm-shrinkwrap.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codegens/csharp-httpclient/npm/test-lint.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ module.exports = function (exit) {
5353
};
5454

5555
// ensure we run this script exports if this is a direct stdin.tty run
56-
!module.parent && module.exports(shell.exit);
56+
!module.parent && module.exports(shell.exit);

codegens/csharp-httpclient/npm/test-newman.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ module.exports = function (exit) {
5656
};
5757

5858
// ensure we run this script exports if this is a direct stdin.tty run
59-
!module.parent && module.exports(shell.exit);
59+
!module.parent && module.exports(shell.exit);

codegens/csharp-httpclient/npm/test-unit.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ module.exports = function (exit) {
5656
};
5757

5858
// ensure we run this script exports if this is a direct stdin.tty run
59-
!module.parent && module.exports(shell.exit);
59+
!module.parent && module.exports(shell.exit);

codegens/csharp-httpclient/npm/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ require('async').series([
1515
// eslint-disable-next-line max-len
1616
console.info(chalk[code ? 'red' : 'green'](`\n${name}: duration ${prettyms(Date.now() - startedAt)}\n${name}: ${code ? 'not ok' : 'ok'}!`));
1717
exit(code && (typeof code === 'number' ? code : 1) || 0);
18-
});
18+
});

codegens/csharp-httpclient/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131
"engines": {
3232
"node": ">=8"
3333
}
34-
}
34+
}

codegens/csharp-httpclient/test/.eslintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@
2727
"mocha/valid-test-description": "off",
2828
"mocha/valid-suite-description": "off"
2929
}
30-
}
30+
}

codegens/csharp-httpclient/test/newman/newman.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ describe('convert for different request types', function () {
1818
includeBoilerplate: true
1919
};
2020
runNewmanTest(convert, options, testConfig);
21-
});
21+
});

codegens/csharp-httpclient/test/unit/convert.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -531,4 +531,4 @@ describe('csharp httpclient function', function () {
531531
expect(sanitizedOptions).to.deep.equal(testOptions);
532532
});
533533
});
534-
});
534+
});

codegens/csharp-httpclient/test/unit/csharpify.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ describe('csharpify function', function () {
1818
expect(csharpify(input)).equal(expected);
1919
});
2020
});
21-
});
21+
});

codegens/dart-http/.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ pubspec.lock
4747
pubspec.yaml
4848
.packages
4949
snippet.dart
50-
.dart_tool/
50+
.dart_tool/

codegens/dart-http/.npmignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ typings/
7373

7474
snippet.swift
7575

76-
out/
76+
out/

codegens/dart-http/README.md

+1-1

codegens/dart-http/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = require('./lib');
1+
module.exports = require('./lib');

codegens/dart-http/lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -353,4 +353,4 @@ self = module.exports = {
353353
}
354354
];
355355
}
356-
};
356+
};

codegens/dart-http/lib/lodash.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -452,4 +452,4 @@ module.exports = {
452452
return true;
453453
}
454454

455-
};
455+
};

codegens/dart-http/lib/util.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,4 @@ module.exports = {
120120
});
121121
}
122122
}
123-
};
123+
};

codegens/dart-http/npm-shrinkwrap.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codegens/dart-http/npm/test-lint.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ module.exports = function (exit) {
5454
};
5555

5656
// ensure we run this script exports if this is a direct stdin.tty run
57-
!module.parent && module.exports(exit);
57+
!module.parent && module.exports(exit);

codegens/dart-http/npm/test-newman.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ module.exports = function (exit) {
5656
};
5757

5858
// ensure we run this script exports if this is a direct stdin.tty run
59-
!module.parent && module.exports(exit);
59+
!module.parent && module.exports(exit);

codegens/dart-http/npm/test-unit.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ module.exports = function (exit) {
5656
};
5757

5858
// ensure we run this script exports if this is a direct stdin.tty run
59-
!module.parent && module.exports(exit);
59+
!module.parent && module.exports(exit);

codegens/dart-http/npm/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ require('async').series([
1717
// eslint-disable-next-line max-len
1818
console.info(chalk[code ? 'red' : 'green'](`\n${name}: duration ${prettyms(Date.now() - startedAt)}\n${name}: ${code ? 'not ok' : 'ok'}!`));
1919
exit(code && (typeof code === 'number' ? code : 1) || 0);
20-
});
20+
});

codegens/dart-http/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131
"engines": {
3232
"node": ">=8"
3333
}
34-
}
34+
}

codegens/dart-http/test/newman/newman.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ describe('Convert for different types of request', function () {
1313
};
1414

1515
runNewmanTest(convert, options, testConfig);
16-
});
16+
});

codegens/dart-http/test/unit/convert.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,4 +147,4 @@ describe('Dart Converter', function () {
147147
expect(snippet).to.contain('\t\t\'hello\': \'world\'');
148148
});
149149
});
150-
});
150+
});

codegens/java-unirest/.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ typings/
7070
# dotenv environment variables file
7171
.env
7272

73-
out/
73+
out/

codegens/java-unirest/.jsdoc-config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131
"parser": "gfm",
3232
"hardwrap": false
3333
}
34-
}
34+
}

codegens/java-unirest/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = require('./lib');
1+
module.exports = require('./lib');

codegens/java-unirest/lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
module.exports = {
33
convert: require('./unirest').convert,
44
getOptions: require('./unirest').getOptions
5-
};
5+
};

codegens/java-unirest/lib/lodash.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -453,4 +453,4 @@ module.exports = {
453453
return true;
454454
}
455455

456-
};
456+
};

codegens/java-unirest/lib/parseRequest.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,4 +185,4 @@ module.exports = {
185185
parseBody: parseBody,
186186
parseHeader: parseHeader,
187187
getUrlStringfromUrlObject: getUrlStringfromUrlObject
188-
};
188+
};

codegens/java-unirest/lib/unirest.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,4 +203,4 @@ function convert (request, options, callback) {
203203
module.exports = {
204204
convert: convert,
205205
getOptions: getOptions
206-
};
206+
};

codegens/java-unirest/lib/util.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,4 +118,4 @@ module.exports = {
118118
sanitize: sanitize,
119119
sanitizeOptions: sanitizeOptions,
120120
addFormParam: addFormParam
121-
};
121+
};

codegens/java-unirest/npm-shrinkwrap.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codegens/java-unirest/npm/test-lint.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ module.exports = function (exit) {
5353
};
5454

5555
// ensure we run this script exports if this is a direct stdin.tty run
56-
!module.parent && module.exports(shell.exit);
56+
!module.parent && module.exports(shell.exit);

codegens/java-unirest/npm/test-newman.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ module.exports = function (exit) {
5656
};
5757

5858
// ensure we run this script exports if this is a direct stdin.tty run
59-
!module.parent && module.exports(shell.exit);
59+
!module.parent && module.exports(shell.exit);

codegens/java-unirest/npm/test-unit.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ module.exports = function (exit) {
5656
};
5757

5858
// ensure we run this script exports if this is a direct stdin.tty run
59-
!module.parent && module.exports(shell.exit);
59+
!module.parent && module.exports(shell.exit);

codegens/java-unirest/npm/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ require('async').series([
1515
// eslint-disable-next-line max-len
1616
console.info(chalk[code ? 'red' : 'green'](`\n${name}: duration ${prettyms(Date.now() - startedAt)}\n${name}: ${code ? 'not ok' : 'ok'}!`));
1717
exit(code && (typeof code === 'number' ? code : 1) || 0);
18-
});
18+
});

codegens/java-unirest/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131
"engines": {
3232
"node": ">=8"
3333
}
34-
}
34+
}

codegens/java-unirest/test/newman/newman.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ describe('Convert for different types of request', function () {
1111
options = {includeBoilerplate: true};
1212

1313
runNewmanTest(convert, options, testConfig);
14-
});
14+
});

codegens/java-unirest/test/unit/convert.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -557,4 +557,4 @@ describe('java unirest convert function for test collection', function () {
557557
expect(sanitize('inputString ', true)).to.equal('inputString');
558558
});
559559
});
560-
});
560+
});

codegens/java-unirest/test/unit/validation.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ describe('package.json', function () {
2727
expect(languageModule).to.be.a('object');
2828
expect(languageModule.convert).to.be.a('function');
2929
});
30-
});
30+
});

codegens/libcurl/.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,3 @@ out/
6969

7070
*.c
7171
executableFile
72-

codegens/libcurl/.jsdoc-config.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,4 @@
3131
"parser": "gfm",
3232
"hardwrap": false
3333
}
34-
}
35-
34+
}

codegens/libcurl/.npmignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@ typings/
7171
# dotenv environment variables file
7272
.env
7373

74-
out/
74+
out/

codegens/libcurl/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = require('./lib');
1+
module.exports = require('./lib');

codegens/libcurl/lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -283,4 +283,4 @@ self = module.exports = {
283283
}
284284
];
285285
}
286-
};
286+
};

codegens/libcurl/lib/lodash.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -466,4 +466,4 @@ module.exports = {
466466
return true;
467467
}
468468

469-
};
469+
};

0 commit comments

Comments
 (0)