forked from frida/frida-java-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
33 lines (33 loc) · 845 Bytes
/
.eslintrc.js
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
module.exports = {
extends: [
'semistandard'
],
globals: {
"Arm64Relocator": "readonly",
"Arm64Writer": "readonly",
"CModule": "readonly",
"DebugSymbol": "readonly",
"File": "readonly",
"Instruction": "readonly",
"Int64": "readonly",
"Interceptor": "readonly",
"MatchPattern": "readonly",
"Memory": "readonly",
"Module": "readonly",
"NULL": "readonly",
"NativeCallback": "readonly",
"NativeFunction": "readonly",
"NativePointer": "readonly",
"Process": "readonly",
"Script": "readonly",
"Thread": "readonly",
"ThumbRelocator": "readonly",
"ThumbWriter": "readonly",
"UnixInputStream": "readonly",
"UnixOutputStream": "readonly",
"X86Relocator": "readonly",
"X86Writer": "readonly",
"ptr": "readonly",
"uint64": "readonly",
},
};