UNPKG
noblox.js-proxied
Version:
latest (4.8.5)
4.8.5
A Node.js wrapper for Roblox. (original from sentanos)
github.com/noblox/noblox.js
noblox/noblox.js
noblox.js-proxied
/
.eslintrc.js
22 lines
(21 loc)
•
308 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module.exports
=
{
env:
{
commonjs:
true
,
es6:
true
,
node:
true
},
extends:
[
'standard'
,
'plugin:jest/recommended'
],
globals:
{
Atomics:
'readonly'
,
SharedArrayBuffer:
'readonly'
},
parserOptions:
{
ecmaVersion:
2018
},
rules:
{ },
plugins:
[
'jest'
] }