Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fixed camelcase issue and added disable camelcase in files that might…
… have needed it for backwards compatibility
  • Loading branch information
Leeland Clenista committed Oct 9, 2019
commit cba6a5319f10d915380bf2a2c93e4439d50ad4c8
33 changes: 1 addition & 32 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,37 +22,6 @@
"_contentType"
]
}],
"camelcase": ["error", {
"allow": [
"access_secret",
"access_token",
"client_id",
"client_secret",
"error_description",
"expires_in",
"grant_type",
"id_token",
"Intuit_name",
"intuit_tid",
"jwks_uri",
"migrate_production",
"migrate_sandbox",
"oauth_consumer_key",
"oauth_consumer_secret",
"oauth_nonce",
"oauth_signature",
"oauth_timestamp",
"oauth_token",
"oauth_version",
"redirect_uri",
"refresh_token",
"response_type",
"token_parts",
"token_type",
"user_agent",
"userinfo_endpoint_production",
"userinfo_endpoint_sandbox"
]
}]
"camelcase": ["error", { "properties": "never" }]
}
}
2 changes: 2 additions & 0 deletions src/OAuthClient.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* eslint-disable no-undef */
/* eslint-disable camelcase */
/**

Copyright (c) 2018 Intuit
Expand Down
1 change: 1 addition & 0 deletions src/response/AuthResponse.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable camelcase */
/**

Copyright (c) 2018 Intuit
Expand Down
2 changes: 2 additions & 0 deletions test/TokenTest.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* eslint-disable camelcase */

'use strict';

const { describe, it } = require('mocha');
Expand Down