We are developing an android app with webviews. We're gonna have third part developers for this webviews, but we want to forbid them to use some libraries to force the use of our owns. In this case, we want to forbid the use of jQuery, among other prohibitions. Ideally, this prohibition should be integrated in a linter tool. I don't know much about linters so it will be very helpful if you guide me a little bit about what linter tool to use, or any other kind of help.
I don't know the best approach, maybe looking for a regex to find src="*jquery*"
and integrate this search in a jshint patch?
Thanks!