Run prettier

This commit is contained in:
dangered wolf 2022-08-08 15:15:15 -04:00
parent bc4e08125b
commit 790bcdbd78
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
7 changed files with 39 additions and 36 deletions

View file

@ -6,10 +6,7 @@
"plugin:optimize-regex/recommended", "plugin:optimize-regex/recommended",
"plugin:sonarjs/recommended" "plugin:sonarjs/recommended"
], ],
"plugins": [ "plugins": ["eslint-plugin-optimize-regex", "sonarjs"],
"eslint-plugin-optimize-regex",
"sonarjs"
],
"rules": { "rules": {
"sonarjs/cognitive-complexity": ["warn", 20] "sonarjs/cognitive-complexity": ["warn", 20]
} }

View file

@ -134,7 +134,7 @@ const populateTweetProperties = async (
text: unescapeText(linkFixer(tweet, translateAPI?.translation || '')), text: unescapeText(linkFixer(tweet, translateAPI?.translation || '')),
source_lang: translateAPI?.sourceLanguage || '', source_lang: translateAPI?.sourceLanguage || '',
target_lang: translateAPI?.destinationLanguage || '', target_lang: translateAPI?.destinationLanguage || '',
source_lang_en: translateAPI?.localizedSourceLanguage || '', source_lang_en: translateAPI?.localizedSourceLanguage || ''
}; };
} }
} }

View file

@ -17,7 +17,9 @@ const statusRequest = async (
const userAgent = request.headers.get('User-Agent') || ''; const userAgent = request.headers.get('User-Agent') || '';
const isBotUA = const isBotUA =
userAgent.match(/bot|facebook|embed|got|firefox\/92|curl|wget|go-http|yahoo|generator|whatsapp|preview|link|proxy|vkshare|images|analyzer|index|crawl|spider/gi) !== null; userAgent.match(
/bot|facebook|embed|got|firefox\/92|curl|wget|go-http|yahoo|generator|whatsapp|preview|link|proxy|vkshare|images|analyzer|index|crawl|spider/gi
) !== null;
if ( if (
url.pathname.match(/\/status(es)?\/\d+\.(mp4|png|jpg)/g) !== null || url.pathname.match(/\/status(es)?\/\d+\.(mp4|png|jpg)/g) !== null ||
@ -234,9 +236,10 @@ const sentryWrapper = async (event: FetchEvent): Promise<void> => {
}); });
} }
event.respondWith((async (): Promise<Response> => { event.respondWith(
(async (): Promise<Response> => {
try { try {
return await cacheWrapper(event) return await cacheWrapper(event);
} catch (err: unknown) { } catch (err: unknown) {
sentry && sentry.captureException(err); sentry && sentry.captureException(err);
@ -249,8 +252,9 @@ const sentryWrapper = async (event: FetchEvent): Promise<void> => {
status: 500 status: 500
}); });
} }
})()) })()
} );
};
/* /*
Event to receive web requests on Cloudflare Worker Event to receive web requests on Cloudflare Worker

View file

@ -13,4 +13,4 @@ export const unescapeText = (text: string) => {
.replace(/&lt;/g, '<') .replace(/&lt;/g, '<')
.replace(/&gt;/g, '>') .replace(/&gt;/g, '>')
.replace(/&amp;/g, '&'); .replace(/&amp;/g, '&');
} };

View file

@ -11,7 +11,9 @@ const gitBranch = require('child_process')
.toString() .toString()
.trim(); .trim();
const releaseName = `fixtweet-${gitBranch}-${gitCommit}-${new Date().toISOString().substring(0,19)}` const releaseName = `fixtweet-${gitBranch}-${gitCommit}-${new Date()
.toISOString()
.substring(0, 19)}`;
require('dotenv').config(); require('dotenv').config();
@ -43,7 +45,7 @@ let plugins = [
new webpack.DefinePlugin({ new webpack.DefinePlugin({
RELEASE_NAME: `'${releaseName}'` RELEASE_NAME: `'${releaseName}'`
}) })
] ];
if (process.env.SENTRY_AUTH_TOKEN) { if (process.env.SENTRY_AUTH_TOKEN) {
plugins.push( plugins.push(
@ -52,9 +54,9 @@ if (process.env.SENTRY_AUTH_TOKEN) {
include: './dist', include: './dist',
urlPrefix: '~/', urlPrefix: '~/',
ignore: ['node_modules', 'webpack.config.js'], ignore: ['node_modules', 'webpack.config.js'],
authToken: process.env.SENTRY_AUTH_TOKEN, authToken: process.env.SENTRY_AUTH_TOKEN
}) })
) );
} }
module.exports = { module.exports = {