I came across this question: Defining a HTML template to append using JQuery where the accepted answer uses "x-custom-template" as script type.
After some searching I found out in the following question: What's the difference between using <script type="text/x-custom-template"> and <script type="text/template">? where the accepted comment pointed out that
The use of an invalid MIME type as the value of the type attribute of a (both text/template and text/x-custom-template are invalid REF) is used specifically to prevent the browser from trying to interpret the contents of the tag as JavaScript code (and subsequently throwing a runtime error due to bad JavaScript syntax.). So this basically allows you to put anything inside the script tag for future reference.
Now my question is, is this "text/x-custom-script" a "naming convention" that is very widely used for the purpose and it's a bad practice to use something like "text/no-javascript" to achieve the same effect, or it's just a minority of people that uses "x-custom-script" and I can use basically anything I want and is still a good practice.