forked from QuorumDMS/ftp-srv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.js
More file actions
61 lines (57 loc) 路 1.12 KB
/
Copy patheslint.config.js
File metadata and controls
61 lines (57 loc) 路 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Flat config for ESLint (ESLint v9+)
import js from "@eslint/js";
const mochaGlobals = {
after: "readonly",
afterEach: "readonly",
before: "readonly",
beforeEach: "readonly",
describe: "readonly",
it: "readonly",
xdescribe: "readonly",
xit: "readonly",
context: "readonly",
suite: "readonly",
test: "readonly",
setup: "readonly",
teardown: "readonly",
suiteSetup: "readonly",
suiteTeardown: "readonly",
specify: "readonly",
};
const nodeGlobals = {
process: "readonly",
__dirname: "readonly",
module: "writable",
require: "readonly",
exports: "writable",
Buffer: "readonly",
setImmediate: "readonly",
clearImmediate: "readonly",
setTimeout: "readonly",
clearTimeout: "readonly",
console: "readonly",
URL: "readonly",
};
const testGlobals = {
expect: "readonly",
};
export default [
js.configs.recommended,
{
languageOptions: {
ecmaVersion: 2022,
sourceType: "module",
globals: {
...mochaGlobals,
...nodeGlobals,
...testGlobals,
},
},
},
{
ignores: [
"node_modules/*",
"bower_components/*"
],
},
];