Skip to content

Instantly share code, notes, and snippets.

View akimabs's full-sized avatar
👋
Supp bro

Abdul Hakim akimabs

👋
Supp bro
View GitHub Profile
@underworld14
underworld14 / Setup eslint & prettier.md
Last active July 7, 2021 13:27
Setup Eslint and Prettier in Typescript project.

Using ESLint and Prettier in a TypeScript Project

Setup Eslint

yarn add eslint @typescript-eslint/parser @typescript-eslint/eslint-plugin --dev

Create eslint configuration file

@brianfoody
brianfoody / SvgRadarChart.tsx
Last active August 24, 2023 08:23
SVG Radar Chart in React Native
import React, { useMemo } from "react";
import { View } from "react-native";
import { degToRadians } from "src/components/OrbitLogo";
import Svg, { Circle, Line, Polygon } from "react-native-svg";
import times from "lodash.times";
type RadarData = {
value: number;
label: string;
};