@recras/online-booking-js
Version:
JS library for easy integration of Recras online booking and voucher sales
53 lines (38 loc) • 1.07 kB
Plain Text
{
"browser": true,
"camelcase": false,
// Prohibit use of == and != in favor of === and !==.
"eqeqeq": true,
// Suppress warnings about == null comparisons.
"eqnull": true,
"esversion": 11,
"globals": {
"console": true,
"Pikaday": true,
"RecrasBooking": true,
"RecrasCalendarHelper": true,
"RecrasContactForm": true,
"RecrasCSSHelper": true,
"RecrasDateHelper": true,
"RecrasEventHelper": true,
"RecrasHttpHelper": true,
"RecrasLanguageHelper": true,
"RecrasOptions": true
},
// Enforce tab width of 4 spaces.
"indent": 4,
// Prohibit use of a variable before it is defined.
"latedef": true,
"maxerr": 9999,
// Require capitalized names for constructor functions.
"newcap": true,
// Enforce use of single quotation marks for strings.
"quotmark": "single",
"strict": false,
// Prohibit trailing whitespace.
"trailing": true,
// Prohibit use of explicitly undeclared variables.
"undef": true,
// Warn when variables are defined but never used.
"unused": true
}