File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 255255
256256 /* removeCodeBackticks */
257257 .prose
258- : where (code): not (: where ([class ~= 'not-prose' ], [class ~= 'not-prose' ] * ))::before {
258+ : where (code): not (
259+ : where ([class ~= 'not-prose' ], [class ~= 'not-prose' ] * )
260+ )::before {
259261 content : none;
260262 }
261263 .prose
262- : where (code): not (: where ([class ~= 'not-prose' ], [class ~= 'not-prose' ] * ))::after {
264+ : where (code): not (
265+ : where ([class ~= 'not-prose' ], [class ~= 'not-prose' ] * )
266+ )::after {
263267 content : none;
264268 }
265269}
Original file line number Diff line number Diff line change @@ -1060,11 +1060,7 @@ async function getExtraApps({
10601060 withFileTypes : true ,
10611061 } )
10621062 } catch ( error ) {
1063- if (
1064- error instanceof Error &&
1065- 'code' in error &&
1066- error . code === 'ENOENT'
1067- ) {
1063+ if ( error instanceof Error && 'code' in error && error . code === 'ENOENT' ) {
10681064 return [ ]
10691065 }
10701066 throw error
You can’t perform that action at this time.
0 commit comments