Skip to content

Commit

Permalink
Bump Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Jul 18, 2024
1 parent 8ec5307 commit 6261cb0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions components/sections/contributors/RecentContributors.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
const fetchContributors = async () => {
const response = await fetch("https://raw.githubusercontent.com/v3xlabs/v3x-data/master/team/contributors.json");
const response = await fetch(
'https://raw.githubusercontent.com/v3xlabs/v3x-data/master/team/contributors.json'
);
const contributors = await response.json();
return contributors as {contributors: string[]};
}

export const RecentContributors = async () => {
return contributors as { contributors: string[] };
};

export const RecentContributors = async () => {
const contributors = await fetchContributors();

return (
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"postcss-config": "tsc postcss.config.ts --skipLibCheck --module commonjs --target es2015 --esModuleInterop true --allowSyntheticDefaultImports true --moduleResolution node",
"tailwind-config": "tsc tailwind.config.ts --skipLibCheck --module commonjs --target es2015 --esModuleInterop true --allowSyntheticDefaultImports true --moduleResolution node",
"next-config": "tsc next.config.ts --skipLibCheck --module commonjs --target es2015 --esModuleInterop true --allowSyntheticDefaultImports true --moduleResolution node",
"lint": "eslint -c .eslintrc.json --ext .ts ./src"
"lint": "eslint -c .eslintrc.json --ext .ts ."
},
"keywords": [],
"author": "",
Expand Down

0 comments on commit 6261cb0

Please sign in to comment.