Skip to content

Commit

Permalink
updated jscs rules
Browse files Browse the repository at this point in the history
  • Loading branch information
callmehiphop committed Aug 24, 2016
1 parent c1d335c commit 8c38734
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .jscsrc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",
"maximumLineLength": {
"value": 80,
"allowComments": true
"allowUrlComments": true
},
"excludeFiles": [
"system-test/data/*",
Expand Down
2 changes: 2 additions & 0 deletions packages/common/src/grpc-operation.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ var GrpcService = require('./grpc-service.js');
*/
var GrpcServiceObject = require('./grpc-service-object.js');

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

Expand Down

0 comments on commit 8c38734

Please sign in to comment.