source: imaps-frontend/node_modules/arraybuffer.prototype.slice/.eslintrc

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 513 bytes
Line 
1{
2 "root": true,
3
4 "extends": "@ljharb",
5
6 "rules": {
7 "id-length": 0,
8 "max-params": 0,
9 "max-statements": 0,
10 "multiline-comment-style": 0,
11 "new-cap": [2, {
12 "capIsNewExceptions": [
13 "IsSharedArrayBuffer",
14 "ToIntegerOrInfinity",
15 "GetIntrinsic",
16 "IsDetachedBuffer",
17 "SpeciesConstructor",
18 ],
19 }],
20 },
21
22 "overrides": [
23 {
24 "files": "test/**",
25 "globals": {
26 "ArrayBuffer": false,
27 "Uint8Array": false,
28 },
29 "rules": {
30 "max-lines-per-function": 0,
31 },
32 },
33 ],
34}
Note: See TracBrowser for help on using the repository browser.