Skip to content

Commit

Permalink
Remove trailing slash, see #1400
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Jul 21, 2023
1 parent 2cd34eb commit 4c0f13f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eslint/rules/explicit-method-return-type.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* @copyright 2022 University of Colorado Boulder
*/

const { ESLintUtils } = require( '@typescript-eslint/utils/' ); // eslint-disable-line require-statement-match
const { ESLintUtils } = require( '@typescript-eslint/utils' ); // eslint-disable-line require-statement-match

// these are still MethodDefinition nodes, but don't require an annotation
const exemptMethods = [ 'get', 'set', 'constructor' ];
Expand Down
2 changes: 1 addition & 1 deletion eslint/rules/require-property-suffix.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @copyright 2022 University of Colorado Boulder
*/

const { ESLintUtils } = require( '@typescript-eslint/utils/' ); // eslint-disable-line require-statement-match
const { ESLintUtils } = require( '@typescript-eslint/utils' ); // eslint-disable-line require-statement-match

const visit = ( context, propertyNode ) => {

Expand Down

0 comments on commit 4c0f13f

Please sign in to comment.