mirror of
https://github.com/beefproject/beef
synced 2026-06-08 13:15:56 +00:00
62 lines
1.2 KiB
JavaScript
62 lines
1.2 KiB
JavaScript
"use strict";
|
|
|
|
const js = require("@eslint/js");
|
|
const globals = require("globals");
|
|
|
|
module.exports = [
|
|
{
|
|
ignores: [
|
|
"core/main/client/lib/**",
|
|
"modules/**",
|
|
"node_modules/**",
|
|
"extensions/admin_ui/media/javascript-min/**",
|
|
"**/*.min.js",
|
|
],
|
|
},
|
|
js.configs.recommended,
|
|
{
|
|
files: ["**/*.js"],
|
|
ignores: ["eslint.config.js"],
|
|
languageOptions: {
|
|
ecmaVersion: 5,
|
|
sourceType: "script",
|
|
globals: {
|
|
...globals.browser,
|
|
|
|
// BeEF
|
|
beef: "readonly",
|
|
beef_init: "readonly",
|
|
|
|
// jQuery
|
|
$: "readonly",
|
|
jQuery: "readonly",
|
|
$j: "readonly",
|
|
|
|
// Libraries
|
|
MobileEsp: "readonly",
|
|
evercookie: "readonly",
|
|
swfobject: "readonly",
|
|
|
|
// Browser-specific (old IE / old Firefox)
|
|
XDomainRequest: "readonly",
|
|
MozWebSocket: "readonly",
|
|
clipboardData: "readonly",
|
|
|
|
// Debug
|
|
isDebug: "readonly",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
files: ["eslint.config.js"],
|
|
languageOptions: {
|
|
ecmaVersion: "latest",
|
|
sourceType: "commonjs",
|
|
globals: {
|
|
module: "writable",
|
|
require: "readonly",
|
|
},
|
|
},
|
|
},
|
|
];
|