main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Line | |
---|
1 | {
|
---|
2 | "root": true,
|
---|
3 |
|
---|
4 | "extends": "@ljharb",
|
---|
5 |
|
---|
6 | "plugins": [
|
---|
7 | "import",
|
---|
8 | ],
|
---|
9 |
|
---|
10 | "globals": {
|
---|
11 | "Iterator": false,
|
---|
12 | },
|
---|
13 |
|
---|
14 | "rules": {
|
---|
15 | "array-bracket-newline": 0,
|
---|
16 | "func-name-matching": 0,
|
---|
17 | "id-length": 0,
|
---|
18 | "max-lines-per-function": 0,
|
---|
19 | "max-statements": 0,
|
---|
20 | "multiline-comment-style": 0,
|
---|
21 | "new-cap": [2, {
|
---|
22 | "capIsNewExceptions": [
|
---|
23 | "Call",
|
---|
24 | "CreateIteratorFromClosure",
|
---|
25 | "CreateIterResultObject",
|
---|
26 | "GeneratorResume",
|
---|
27 | "GeneratorResumeAbrupt",
|
---|
28 | "GeneratorStart",
|
---|
29 | "GeneratorValidate",
|
---|
30 | "Get",
|
---|
31 | "GetIntrinsic",
|
---|
32 | "GetIteratorDirect",
|
---|
33 | "GetIteratorFlattenable",
|
---|
34 | "GetMethod",
|
---|
35 | "IsArray",
|
---|
36 | "IsCallable",
|
---|
37 | "IteratorClose",
|
---|
38 | "IteratorStepValue",
|
---|
39 | "IteratorStep",
|
---|
40 | "NormalCompletion",
|
---|
41 | "OrdinaryHasInstance",
|
---|
42 | "OrdinaryObjectCreate",
|
---|
43 | "StringToCodePoints",
|
---|
44 | "ThrowCompletion",
|
---|
45 | "ToBoolean",
|
---|
46 | "ToIntegerOrInfinity",
|
---|
47 | "ToNumber",
|
---|
48 | "Type",
|
---|
49 | ],
|
---|
50 | }],
|
---|
51 | "no-negated-condition": 1,
|
---|
52 | "object-curly-newline": 0,
|
---|
53 | "sort-keys": 0,
|
---|
54 | "import/no-extraneous-dependencies": 2,
|
---|
55 | },
|
---|
56 |
|
---|
57 | "overrides": [
|
---|
58 | {
|
---|
59 | "files": "test/**",
|
---|
60 | "rules": {
|
---|
61 | "eqeqeq": ["error", "allow-null"],
|
---|
62 | "max-params": 0,
|
---|
63 | "import/no-extraneous-dependencies": [2, { "devDependencies": true }],
|
---|
64 | },
|
---|
65 | },
|
---|
66 | ],
|
---|
67 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.