mikaello
mikaello
> However, a workaround would be to filter out the *.tests.ps1 files and pipe the remaining files to Invoke-ScriptAnalyzer. For example > > ```powershell > Get-ChildItem -Path -Exclude "*.tests.ps1" |...
I have the same usecase as @dvlp-r, using codespaces while on the run, so running the program through the CLI is essential. I like your suggestion @hsz.
Hm, this feels like re-examining the type system, these kind of type errors should be handled by the type checker, IMHO.
Thanks @kreftl ! In addition to your changes, for OpenJDK 15 to work I needed to do the following changes as well: In `pom.xml`: ```diff - 1.6 - 1.6 +...
I had the exact same mistake, copy pasted the example from the README, with `unmarshallURL` and a local file. Changing to `unmarshalFile` solved the issue for me: ```diff // Unmarshal...
Duplicate of https://github.com/ledongthuc/pdf/issues/15
A workaround is to clean the PDF with [mupdf](https://mupdf.com/docs/manual-mutool-clean.html) before using this package: ```shell $ sudo apt-get install mupdf-tools $ mutool clean -s dirty.pdf clean.pdf ``` `clean.pdf` should now work...
This is also reported in issue #45 , and as I mentioned back then, the `ScrollView` may be replaced by `FlatList`. We are actively merging PR's, do you have the...
Hi! There is no built in way in `react-native-modal-selector` to reset state, this could be implemented as a reset method accessible through a `ref` to `react-native-modal-selector`. Instead of implementing a...
Would it possible for you to link an Expo Snack (https://snack.expo.dev/) with a reproducible example of the error you are experiencing? Then it will be easier to see out what...