Update prettier ignore

This commit is contained in:
ehesp
2019-08-21 11:44:29 +01:00
parent c6124e13cf
commit 24be224947
2 changed files with 4 additions and 3 deletions

View File

@@ -1,3 +1,6 @@
package.json
packages/**/node_modules/**
tests/node_modules/**
tests/app.playground.js
tests/app.smartreply.js
tests/app.admob.js

View File

@@ -39,9 +39,7 @@ export function handleStorageEvent(storageInstance, event) {
}
export function getHttpUrlParts(url) {
const parts = url.match(
/\/b\/(.*)\.appspot.com\/o\/([a-zA-Z0-9./\-_]+)(.*)/,
);
const parts = url.match(/\/b\/(.*)\.appspot.com\/o\/([a-zA-Z0-9./\-_]+)(.*)/);
if (!parts || parts.length < 3) {
return null;