Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bdougie committed Apr 1, 2024
1 parent 426c355 commit 1c8770a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ module.exports = {
},
],
"array-element-newline": ["error", "consistent"],
"arrow-parens": ["error", "as-needed"],
"arrow-parens": ["warn", "as-needed"],
"arrow-spacing": "error",
"block-spacing": ["error", "always"],
"brace-style": ["error", "1tbs"],
Expand Down Expand Up @@ -364,7 +364,7 @@ module.exports = {
},
],
"react/jsx-max-props-per-line": [
"error",
"warn",
{
maximum: 1,
},
Expand All @@ -385,7 +385,7 @@ module.exports = {
},
],
"react/jsx-one-expression-per-line": [
"error",
"warn",
{
allow: "literal",
},
Expand Down
1 change: 0 additions & 1 deletion src/components/RepoList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export declare interface RepoListProps {

const RepoList = ({ data }: RepoListProps): JSX.Element => {
const {
id,
name,
full_name,
description,
Expand Down

0 comments on commit 1c8770a

Please sign in to comment.