TimeTrex Community Edition v16.2.0

This commit is contained in:
2022-12-13 07:10:06 +01:00
commit 472f000c1b
6810 changed files with 2636142 additions and 0 deletions

26
interface/html5/.jshintrc Normal file
View File

@ -0,0 +1,26 @@
{
"undef": false,
// "unused": true,
"white": false,
// "quotmark": "single",
"trailing": true,
"strict": false,
//Causes problems with 3rd part libs.
"noempty": true,
// "latedef": "nofunc", //Don't error on latedef of functions, but do on variables
"latedef": false,
//Don't error on latedef of functions, but do on variables
"forin": false,
//Not required right now.
"eqeqeq": true,
"curly": true,
"sub": true,
//Dot Notation. We use SBN for variables and dot notation for objects.
"browser": true,
"maxcomplexity": 10,
"indent": 4,
"maxerr": 1000,
"globals": {
"MY_GLOBAL": false
}
}