There was an error while loading. Please reload this page.
1 parent 00ca77e commit 218f39bCopy full SHA for 218f39b
.eslintrc.js
@@ -3,7 +3,8 @@ module.exports = {
3
'eslint:recommended',
4
'plugin:@typescript-eslint/eslint-recommended',
5
'plugin:@typescript-eslint/recommended',
6
- 'plugin:prettier/recommended'
+ 'plugin:prettier/recommended',
7
+ 'plugin:react/recommended'
8
],
9
parser: '@typescript-eslint/parser',
10
parserOptions: {
src/CodeSnippetDisplay.tsx
@@ -255,7 +255,7 @@ export class CodeSnippetDisplay extends React.Component<
255
<div
256
className="triangle"
257
title="Bookmark"
258
- onClick={event => {
+ onClick={(event): void => {
259
this.bookmarkSnippetClick(codeSnippet, event);
260
}}
261
></div>
0 commit comments