multiple bug fixes including sender ID filtering
This commit is contained in:
46
public/assets/vendors/tabulator-master/eslint.config.js
vendored
Normal file
46
public/assets/vendors/tabulator-master/eslint.config.js
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
const {
|
||||
defineConfig,
|
||||
globalIgnores,
|
||||
} = require("eslint/config");
|
||||
|
||||
const globals = require("globals");
|
||||
|
||||
module.exports = defineConfig([{
|
||||
languageOptions: {
|
||||
globals: {
|
||||
...globals.browser,
|
||||
...globals.node,
|
||||
...globals.amd,
|
||||
"luxon": "readonly",
|
||||
"XLSX": "readonly",
|
||||
"jspdf": "readonly",
|
||||
},
|
||||
|
||||
"ecmaVersion": "latest",
|
||||
"sourceType": "module",
|
||||
parserOptions: {},
|
||||
},
|
||||
|
||||
"rules": {
|
||||
"semi": "error",
|
||||
|
||||
"indent": ["error", "tab", {
|
||||
VariableDeclarator: 0,
|
||||
"SwitchCase": 1,
|
||||
}],
|
||||
|
||||
"no-unused-vars": ["warn", {
|
||||
"vars": "all",
|
||||
"args": "none",
|
||||
"ignoreRestSiblings": false,
|
||||
}],
|
||||
|
||||
"no-fallthrough": "off",
|
||||
"no-inner-declarations": "off",
|
||||
"no-prototype-builtins": "off",
|
||||
|
||||
"no-empty": ["error", {
|
||||
"allowEmptyCatch": true,
|
||||
}],
|
||||
},
|
||||
}, globalIgnores(["**/.eslintrc.js", "**/dist", "**/examples"])]);
|
||||
Reference in New Issue
Block a user