Skip to content

Commit 8c38734

Browse files
committed
updated jscs rules
1 parent c1d335c commit 8c38734

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.jscsrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",
1818
"maximumLineLength": {
1919
"value": 80,
20-
"allowComments": true
20+
"allowUrlComments": true
2121
},
2222
"excludeFiles": [
2323
"system-test/data/*",

packages/common/src/grpc-operation.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ var GrpcService = require('./grpc-service.js');
3535
*/
3636
var GrpcServiceObject = require('./grpc-service-object.js');
3737

38+
// jscs:disable maximumLineLength
3839
/**
3940
* An Operation object allows you to interact with APIs that take longer to
4041
* process things.
@@ -47,6 +48,7 @@ var GrpcServiceObject = require('./grpc-service-object.js');
4748
* service.
4849
* @param {string} name - The operation name.
4950
*/
51+
// jscs:enable maximumLineLength
5052
function GrpcOperation(parent, name) {
5153
var methods = {
5254

0 commit comments

Comments
 (0)