See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
#!/bin/bash | |
reset | |
set +x | |
echo "------- LE2117 to LE2115 Conversion Bash Script by Lomeli12@xda -------" | |
echo "Please make sure you are in bootloader, your screen should say \"Fastboot Mode\" in red." | |
echo "You should be using the latest Google platform tools from your system's package manager (Apt, Yay, Brew, Scoop, etc)." | |
echo -e "Do not continue if you are unsure. \n" | |
# Make sure the user knows the risk and wants to continue | |
while true; do |
import type { | |
VercelRequest as IVercelRequest, | |
VercelRequestBody, | |
VercelRequestCookies, | |
VercelRequestQuery | |
} from '@vercel/node' | |
import isUndefined from 'lodash/isUndefined' | |
import omit from 'lodash/omit' | |
import type { MockRequestOptions } from 'mock-http' | |
import { Request } from 'mock-http' |