This patch allows entities to occupy more than one slot in a GarrisonHolder.
PetraAI complies.
In rP8453 the dependency on the population cost was removed, thus making each entity occupy one slot again.
Differential D2056
Resupport more garrisoned slots per entity. Freagarach on Jul 9 2019, 2:01 PM. Authored by Tags None Subscribers
Details This patch allows entities to occupy more than one slot in a GarrisonHolder. In rP8453 the dependency on the population cost was removed, thus making each entity occupy one slot again.
Diff Detail
Event TimelineThere are a very large number of changes, so older changes are hidden. Show Older Changes
Comment Actions Successful build - Chance fights ever on the side of the prudent. Linter detected issues: Executing section Source... Executing section JS... | | [NORMAL] ESLintBear (indent): | | Expected indentation of 2 tabs but found 3. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | 74| 74| }); | 75| 75| | 76| 76| AddMock(i, IID_Garrisonable, { | 77| |- "GetSlots": () => 1 | | 77|+ "GetSlots": () => 1 | 78| 78| }); | 79| 79| | 80| 80| AddMock(i, IID_Position, { | | [NORMAL] ESLintBear (indent): | | Expected indentation of 1 tab but found 2. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | 75| 75| | 76| 76| AddMock(i, IID_Garrisonable, { | 77| 77| "GetSlots": () => 1 | 78| |- }); | | 78|+ }); | 79| 79| | 80| 80| AddMock(i, IID_Position, { | 81| 81| "GetHeightOffset": () => 0, | | [NORMAL] ESLintBear (curly): | | Unnecessary { after 'if' condition. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/ai/petra/garrisonManager.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/ai/petra/garrisonManager.js | 149| 149| if (ent.hasClass("Structure")) | 150| 150| around.defenseStructure = true; | 151| 151| else if (m.isSiegeUnit(ent)) | 152| |- { | | 152|+ | 153| 153| if (ent.attackTypes().indexOf("Melee") !== -1) | 154| 154| around.meleeSiege = true; | 155| 155| else | 156| 156| around.rangeSiege = true; | 157| |- } | | 157|+ | 158| 158| else | 159| 159| { | 160| 160| around.unit = true; binaries/data/mods/public/simulation/ai/petra/garrisonManager.js | 373| }(PETRA); | | [MAJOR] ESLintBear (no-use-before-define): | | 'PETRA' was used before it was defined. | | [NORMAL] ESLintBear (curly): | | Unnecessary { after 'if' condition. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | 66| 66| let phase = ""; | 67| 67| let cmpTechnologyManager = QueryPlayerIDInterface(i, IID_TechnologyManager); | 68| 68| if (cmpTechnologyManager) | 69| |- { | | 69|+ | 70| 70| if (cmpTechnologyManager.IsTechnologyResearched("phase_city")) | 71| 71| phase = "city"; | 72| 72| else if (cmpTechnologyManager.IsTechnologyResearched("phase_town")) | 73| 73| phase = "town"; | 74| 74| else if (cmpTechnologyManager.IsTechnologyResearched("phase_village")) | 75| 75| phase = "village"; | 76| |- } | | 76|+ | 77| 77| | 78| 78| // store player ally/neutral/enemy data as arrays | 79| 79| let allies = []; | | [NORMAL] ESLintBear (semi): | | Missing semicolon. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | 342| 342| if (cmpGarrisonable) | 343| 343| ret.canGarrison = { | 344| 344| "slots": cmpGarrisonable.GetSlots() | 345| |- } | | 345|+ }; | 346| 346| | 347| 347| let cmpUnitAI = Engine.QueryInterface(ent, IID_UnitAI); | 348| 348| if (cmpUnitAI) | | [NORMAL] ESLintBear (curly): | | Unnecessary { after 'if' condition. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | 419| 419| ret.attack[type].elevationBonus = range.elevationBonus; | 420| 420| | 421| 421| if (cmpUnitAI && cmpPosition && cmpPosition.IsInWorld()) | 422| |- { | | 422|+ | 423| 423| // For units, take the range in front of it, no spread. So angle = 0 | 424| 424| ret.attack[type].elevationAdaptedRange = cmpRangeManager.GetElevationAdaptedRange(cmpPosition.GetPosition(), cmpPosition.GetRotation(), range.max, range.elevationBonus, 0); | 425| |- } | | 425|+ | 426| 426| else if(cmpPosition && cmpPosition.IsInWorld()) | 427| 427| { | 428| 428| // For buildings, take the average elevation around it. So angle = 2*pi | | [NORMAL] ESLintBear (curly): | | Unnecessary { after 'if' condition. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | 424| 424| ret.attack[type].elevationAdaptedRange = cmpRangeManager.GetElevationAdaptedRange(cmpPosition.GetPosition(), cmpPosition.GetRotation(), range.max, range.elevationBonus, 0); | 425| 425| } | 426| 426| else if(cmpPosition && cmpPosition.IsInWorld()) | 427| |- { | | 427|+ | 428| 428| // For buildings, take the average elevation around it. So angle = 2*pi | 429| 429| ret.attack[type].elevationAdaptedRange = cmpRangeManager.GetElevationAdaptedRange(cmpPosition.GetPosition(), cmpPosition.GetRotation(), range.max, range.elevationBonus, 2*Math.PI); | 430| |- } | | 430|+ | 431| 431| else | 432| 432| { | 433| 433| // not in world, set a default? | | [NORMAL] ESLintBear (curly): | | Unnecessary { after 'else'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | 429| 429| ret.attack[type].elevationAdaptedRange = cmpRangeManager.GetElevationAdaptedRange(cmpPosition.GetPosition(), cmpPosition.GetRotation(), range.max, range.elevationBonus, 2*Math.PI); | 430| 430| } | 431| 431| else | 432| |- { | | 432|+ | 433| 433| // not in world, set a default? | 434| 434| ret.attack[type].elevationAdaptedRange = ret.attack.maxRange; | 435| |- } | | 435|+ | 436| 436| } | 437| 437| } | 438| 438| | | [NORMAL] ESLintBear (indent): | | Expected indentation of 2 tabs but found 3. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | 800| 800| updateEntityColor(data.showAllStatusBars && (i == player || player == -1) ? | 801| 801| [IID_Minimap, IID_RangeOverlayRenderer, IID_RallyPointRenderer, IID_StatusBars] : | 802| 802| [IID_Minimap, IID_RangeOverlayRenderer, IID_RallyPointRenderer], | 803| |- cmpRangeManager.GetEntitiesByPlayer(i)); | | 803|+ cmpRangeManager.GetEntitiesByPlayer(i)); | 804| 804| } | 805| 805| updateEntityColor([IID_Selectable, IID_StatusBars], data.selected); | 806| 806| Engine.QueryInterface(SYSTEM_ENTITY, IID_TerritoryManager).UpdateColors(); | | [NORMAL] ESLintBear (curly): | | Unnecessary { after 'else'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js |1319|1319| } |1320|1320| } |1321|1321| else |1322| |- { | |1322|+ |1323|1323| // Didn't snap to an existing entity, add the starting tower manually. To prevent odd-looking rotation jumps |1324|1324| // when shift-clicking to build a wall, reuse the placement angle that was last seen on a validly positioned |1325|1325| // wall piece. |1340|1340| "pos": start.pos, |1341|1341| "angle": previewEntities.length > 0 ? previewEntities[0].angle : this.placementWallLastAngle |1342|1342| }); |1343| |- } | |1343|+ |1344|1344| |1345|1345| if (end.pos) |1346|1346| { | | [NORMAL] ESLintBear (curly): | | Unnecessary { after 'if' condition. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js |1343|1343| } |1344|1344| |1345|1345| if (end.pos) |1346| |- { | |1346|+ |1347|1347| // Analogous to the starting side case above |1348|1348| if (end.snappedEnt && end.snappedEnt != INVALID_ENTITY) |1349|1349| { |1381|1381| "pos": end.pos, |1382|1382| "angle": previewEntities.length > 0 ? previewEntities[previewEntities.length-1].angle : this.placementWallLastAngle |1383|1383| }); |1384| |- } | |1384|+ |1385|1385| |1386|1386| let cmpTerrain = Engine.QueryInterface(SYSTEM_ENTITY, IID_Terrain); |1387|1387| if (!cmpTerrain) | | [NORMAL] ESLintBear (curly): | | Unnecessary { after 'if' condition. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js |1559|1559| |1560|1560| let cmpVisual = Engine.QueryInterface(ent, IID_Visual); |1561|1561| if (cmpVisual) |1562| |- { | |1562|+ |1563|1563| if (!allPiecesValid || !canAfford) |1564|1564| cmpVisual.SetShadingColor(1.4, 0.4, 0.4, 1); |1565|1565| else |1566|1566| cmpVisual.SetShadingColor(1, 1, 1, 1); |1567| |- } | |1567|+ |1568|1568| |1569|1569| ++entPool.numUsed; |1570|1570| } | | [NORMAL] ESLintBear (indent): | | Expected indentation of 5 tabs but found 6. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js |1633|1633| { |1634|1634| minDist2 = dist2; |1635|1635| minDistEntitySnapData = { |1636| |- "x": pos.x, | |1636|+ "x": pos.x, |1637|1637| "z": pos.z, |1638|1638| "angle": cmpPosition.GetRotation().y, |1639|1639| "ent": ent | | [NORMAL] ESLintBear (indent): | | Expected indentation of 5 tabs but found 6. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js |1634|1634| minDist2 = dist2; |1635|1635| minDistEntitySnapData = { |1636|1636| "x": pos.x, |1637| |- "z": pos.z, | |1637|+ "z": pos.z, |1638|1638| "angle": cmpPosition.GetRotation().y, |1639|1639| "ent": ent |1640|1640| }; | | [NORMAL] ESLintBear (indent): | | Expected indentation of 5 tabs but found 6. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js |1635|1635| minDistEntitySnapData = { |1636|1636| "x": pos.x, |1637|1637| "z": pos.z, |1638| |- "angle": cmpPosition.GetRotation().y, | |1638|+ "angle": cmpPosition.GetRotation().y, |1639|1639| "ent": ent |1640|1640| }; |1641|1641| } | | [NORMAL] ESLintBear (indent): | | Expected indentation of 5 tabs but found 6. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js |1636|1636| "x": pos.x, |1637|1637| "z": pos.z, |1638|1638| "angle": cmpPosition.GetRotation().y, |1639| |- "ent": ent | |1639|+ "ent": ent |1640|1640| }; |1641|1641| } |1642|1642| } | | [NORMAL] ESLintBear (curly): | | Unnecessary { after 'if' condition. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js |1781|1781| result.gain = cmpEntityTrader.GetGoods().amount; |1782|1782| } |1783|1783| else if (data.target === secondMarket) |1784| |- { | |1784|+ |1785|1785| result = { |1786|1786| "type": "is second", |1787|1787| "gain": cmpEntityTrader.GetGoods().amount, |1788|1788| }; |1789| |- } | |1789|+ |1790|1790| else if (!firstMarket) |1791|1791| { |1792|1792| result = { "type": "set first" }; | | [NORMAL] ESLintBear (curly): | | Unnecessary { after 'if' condition. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js |1788|1788| }; |1789|1789| } |1790|1790| else if (!firstMarket) |1791| |- { | |1791|+ |1792|1792| result = { "type": "set first" }; |1793| |- } | |1793|+ |1794|1794| else if (!secondMarket) |1795|1795| { |1796|1796| result = { | | [NORMAL] ESLintBear (curly): | | Unnecessary { after 'if' condition. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js |1792|1792| result = { "type": "set first" }; |1793|1793| } |1794|1794| else if (!secondMarket) |1795| |- { | |1795|+ |1796|1796| result = { |1797|1797| "type": "set second", |1798|1798| "gain": cmpEntityTrader.CalculateGain(firstMarket, data.target), |1799|1799| }; |1800| |- } | |1800|+ |1801|1801| else |1802|1802| { |1803|1803| // Else both markets are not null and target is different from them | | [NORMAL] ESLintBear (curly): | | Unnecessary { after 'else'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/GuiInterface.js |1799|1799| }; |1800|1800| } |1801|1801| else |1802| |- { | |1802|+ |1803|1803| // Else both markets are not null and target is different from them |1804|1804| result = { "type": "set first" }; |1805| |- } | |1805|+ |1806|1806| return result; |1807|1807| }; |1808|1808| binaries/data/mods/public/simulation/components/GuiInterface.js | 345| » » } | | [NORMAL] JSHintBear: | | Missing semicolon. binaries/data/mods/public/simulation/components/AlertRaiser.js | 123| » » let·units·=·cmpGarrisonHolder.GetEntities().filter(ent·=>·{ | | [NORMAL] ESLintBear (no-shadow): | | 'units' is already declared in the upper scope. | | [NORMAL] ESLintBear (curly): | | Unnecessary { after 'for-of'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/ai/common-api/entity.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/ai/common-api/entity.js | 33| 33| { | 34| 34| let args = string.split("/"); | 35| 35| for (let arg of args) | 36| |- { | | 36|+ | 37| 37| if (value[arg]) | 38| 38| value = value[arg]; | 39| 39| else | 41| 41| value = undefined; | 42| 42| break; | 43| 43| } | 44| |- } | | 44|+ | 45| 45| this._tpCache.set(string, value); | 46| 46| } | 47| 47| return this._tpCache.get(string); | | [NORMAL] ESLintBear (curly): | | Unnecessary { after 'if' condition. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/ai/common-api/entity.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/ai/common-api/entity.js | 308| 308| return undefined; | 309| 309| | 310| 310| if (this.get("Attack/" + type + "/Bonuses")) | 311| |- { | | 311|+ | 312| 312| for (let b in this.get("Attack/" + type + "/Bonuses")) | 313| 313| { | 314| 314| let bonusClasses = this.get("Attack/" + type + "/Bonuses/" + b + "/Classes"); | 318| 318| if (bcl == againstClass) | 319| 319| return +this.get("Attack/" + type + "/Bonuses/" + b + "/Multiplier"); | 320| 320| } | 321| |- } | | 321|+ | 322| 322| return 1; | 323| 323| }, | 324| 324| binaries/data/mods/public/simulation/ai/common-api/entity.js | 811| » » if·(this.position()·!==·undefined)·{ | | [NORMAL] ESLintBear (brace-rules/brace-on-same-line): | | Opening curly brace appears on the same line as controlling statement. binaries/data/mods/public/simulation/ai/common-api/entity.js | 828| » » if·(this.position()·!==·undefined·&&·unitToFleeFrom.position()·!==·undefined)·{ | | [NORMAL] ESLintBear (brace-rules/brace-on-same-line): | | Opening curly brace appears on the same line as controlling statement. binaries/data/mods/public/simulation/ai/common-api/entity.js | 958| }(API3); | | [MAJOR] ESLintBear (no-use-before-define): | | 'API3' was used before it was defined. binaries/data/mods/public/gui/session/unit_actions.js | 557| » » » switch·(tradingDetails.type) | | [NORMAL] ESLintBear (default-case): | | Expected a default case. | | [NORMAL] ESLintBear (indent): | | Expected indentation of 4 tabs but found 3. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 47| 47| "GetResource": resource => ({ | 48| 48| "aiAnalysisInfluenceGroup": | 49| 49| resource == "food" ? "ignore" : | 50| |- resource == "wood" ? "abundant" : "sparse" | | 50|+ resource == "wood" ? "abundant" : "sparse" | 51| 51| }) | 52| 52| }; | 53| 53| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPrices' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 55| 55| | 56| 56| | 57| 57| AddMock(SYSTEM_ENTITY, IID_Barter, { | 58| |- GetPrices: function() { | | 58|+ "GetPrices": function() { | 59| 59| return { | 60| 60| "buy": { "food": 150 }, | 61| 61| "sell": { "food": 25 } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'PlayerHasMarket' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 61| 61| "sell": { "food": 25 } | 62| 62| }; | 63| 63| }, | 64| |- PlayerHasMarket: function () { return false; } | | 64|+ "PlayerHasMarket": function () { return false; } | 65| 65| }); | 66| 66| | 67| 67| AddMock(SYSTEM_ENTITY, IID_EndGameManager, { | | [NORMAL] ESLintBear (space-before-function-paren): | | Unexpected space before function parentheses. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 61| 61| "sell": { "food": 25 } | 62| 62| }; | 63| 63| }, | 64| |- PlayerHasMarket: function () { return false; } | | 64|+ PlayerHasMarket: function() { return false; } | 65| 65| }); | 66| 66| | 67| 67| AddMock(SYSTEM_ENTITY, IID_EndGameManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetVictoryConditions' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 65| 65| }); | 66| 66| | 67| 67| AddMock(SYSTEM_ENTITY, IID_EndGameManager, { | 68| |- GetVictoryConditions: () => ["conquest", "wonder"], | | 68|+ "GetVictoryConditions": () => ["conquest", "wonder"], | 69| 69| GetAlliedVictory: function() { return false; } | 70| 70| }); | 71| 71| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetAlliedVictory' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 66| 66| | 67| 67| AddMock(SYSTEM_ENTITY, IID_EndGameManager, { | 68| 68| GetVictoryConditions: () => ["conquest", "wonder"], | 69| |- GetAlliedVictory: function() { return false; } | | 69|+ "GetAlliedVictory": function() { return false; } | 70| 70| }); | 71| 71| | 72| 72| AddMock(SYSTEM_ENTITY, IID_PlayerManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetNumPlayers' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 70| 70| }); | 71| 71| | 72| 72| AddMock(SYSTEM_ENTITY, IID_PlayerManager, { | 73| |- GetNumPlayers: function() { return 2; }, | | 73|+ "GetNumPlayers": function() { return 2; }, | 74| 74| GetPlayerByID: function(id) { TS_ASSERT(id === 0 || id === 1); return 100+id; } | 75| 75| }); | 76| 76| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPlayerByID' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 71| 71| | 72| 72| AddMock(SYSTEM_ENTITY, IID_PlayerManager, { | 73| 73| GetNumPlayers: function() { return 2; }, | 74| |- GetPlayerByID: function(id) { TS_ASSERT(id === 0 || id === 1); return 100+id; } | | 74|+ "GetPlayerByID": function(id) { TS_ASSERT(id === 0 || id === 1); return 100+id; } | 75| 75| }); | 76| 76| | 77| 77| AddMock(SYSTEM_ENTITY, IID_RangeManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLosVisibility' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 75| 75| }); | 76| 76| | 77| 77| AddMock(SYSTEM_ENTITY, IID_RangeManager, { | 78| |- GetLosVisibility: function(ent, player) { return "visible"; }, | | 78|+ "GetLosVisibility": function(ent, player) { return "visible"; }, | 79| 79| GetLosCircular: function() { return false; } | 80| 80| }); | 81| 81| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLosCircular' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 76| 76| | 77| 77| AddMock(SYSTEM_ENTITY, IID_RangeManager, { | 78| 78| GetLosVisibility: function(ent, player) { return "visible"; }, | 79| |- GetLosCircular: function() { return false; } | | 79|+ "GetLosCircular": function() { return false; } | 80| 80| }); | 81| 81| | 82| 82| AddMock(SYSTEM_ENTITY, IID_TemplateManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCurrentTemplateName' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 80| 80| }); | 81| 81| | 82| 82| AddMock(SYSTEM_ENTITY, IID_TemplateManager, { | 83| |- GetCurrentTemplateName: function(ent) { return "example"; }, | | 83|+ "GetCurrentTemplateName": function(ent) { return "example"; }, | 84| 84| GetTemplate: function(name) { return ""; } | 85| 85| }); | 86| 86| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTemplate' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 81| 81| | 82| 82| AddMock(SYSTEM_ENTITY, IID_TemplateManager, { | 83| 83| GetCurrentTemplateName: function(ent) { return "example"; }, | 84| |- GetTemplate: function(name) { return ""; } | | 84|+ "GetTemplate": function(name) { return ""; } | 85| 85| }); | 86| 86| | 87| 87| AddMock(SYSTEM_ENTITY, IID_Timer, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTime' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 85| 85| }); | 86| 86| | 87| 87| AddMock(SYSTEM_ENTITY, IID_Timer, { | 88| |- GetTime: function() { return 0; }, | | 88|+ "GetTime": function() { return 0; }, | 89| 89| SetTimeout: function(ent, iid, funcname, time, data) { return 0; } | 90| 90| }); | 91| 91| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'SetTimeout' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 86| 86| | 87| 87| AddMock(SYSTEM_ENTITY, IID_Timer, { | 88| 88| GetTime: function() { return 0; }, | 89| |- SetTimeout: function(ent, iid, funcname, time, data) { return 0; } | | 89|+ "SetTimeout": function(ent, iid, funcname, time, data) { return 0; } | 90| 90| }); | 91| 91| | 92| 92| AddMock(100, IID_Player, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetName' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 90| 90| }); | 91| 91| | 92| 92| AddMock(100, IID_Player, { | 93| |- GetName: function() { return "Player 1"; }, | | 93|+ "GetName": function() { return "Player 1"; }, | 94| 94| GetCiv: function() { return "gaia"; }, | 95| 95| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 96| 96| CanControlAllUnits: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCiv' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 91| 91| | 92| 92| AddMock(100, IID_Player, { | 93| 93| GetName: function() { return "Player 1"; }, | 94| |- GetCiv: function() { return "gaia"; }, | | 94|+ "GetCiv": function() { return "gaia"; }, | 95| 95| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 96| 96| CanControlAllUnits: function() { return false; }, | 97| 97| GetPopulationCount: function() { return 10; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetColor' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 92| 92| AddMock(100, IID_Player, { | 93| 93| GetName: function() { return "Player 1"; }, | 94| 94| GetCiv: function() { return "gaia"; }, | 95| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 95|+ "GetColor": function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 96| 96| CanControlAllUnits: function() { return false; }, | 97| 97| GetPopulationCount: function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'r' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 92| 92| AddMock(100, IID_Player, { | 93| 93| GetName: function() { return "Player 1"; }, | 94| 94| GetCiv: function() { return "gaia"; }, | 95| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 95|+ GetColor: function() { return { "r": 1, g: 1, b: 1, a: 1}; }, | 96| 96| CanControlAllUnits: function() { return false; }, | 97| 97| GetPopulationCount: function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'g' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 92| 92| AddMock(100, IID_Player, { | 93| 93| GetName: function() { return "Player 1"; }, | 94| 94| GetCiv: function() { return "gaia"; }, | 95| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 95|+ GetColor: function() { return { r: 1, "g": 1, b: 1, a: 1}; }, | 96| 96| CanControlAllUnits: function() { return false; }, | 97| 97| GetPopulationCount: function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'b' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 92| 92| AddMock(100, IID_Player, { | 93| 93| GetName: function() { return "Player 1"; }, | 94| 94| GetCiv: function() { return "gaia"; }, | 95| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 95|+ GetColor: function() { return { r: 1, g: 1, "b": 1, a: 1}; }, | 96| 96| CanControlAllUnits: function() { return false; }, | 97| 97| GetPopulationCount: function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'a' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 92| 92| AddMock(100, IID_Player, { | 93| 93| GetName: function() { return "Player 1"; }, | 94| 94| GetCiv: function() { return "gaia"; }, | 95| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 95|+ GetColor: function() { return { r: 1, g: 1, b: 1, "a": 1}; }, | 96| 96| CanControlAllUnits: function() { return false; }, | 97| 97| GetPopulationCount: function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 92| 92| AddMock(100, IID_Player, { | 93| 93| GetName: function() { return "Player 1"; }, | 94| 94| GetCiv: function() { return "gaia"; }, | 95| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 95|+ GetColor: function() { return { r: 1, g: 1, b: 1, a: 1 }; }, | 96| 96| CanControlAllUnits: function() { return false; }, | 97| 97| GetPopulationCount: function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'CanControlAllUnits' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 93| 93| GetName: function() { return "Player 1"; }, | 94| 94| GetCiv: function() { return "gaia"; }, | 95| 95| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 96| |- CanControlAllUnits: function() { return false; }, | | 96|+ "CanControlAllUnits": function() { return false; }, | 97| 97| GetPopulationCount: function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | 99| 99| GetMaxPopulation: function() { return 200; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPopulationCount' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 94| 94| GetCiv: function() { return "gaia"; }, | 95| 95| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 96| 96| CanControlAllUnits: function() { return false; }, | 97| |- GetPopulationCount: function() { return 10; }, | | 97|+ "GetPopulationCount": function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | 99| 99| GetMaxPopulation: function() { return 200; }, | 100| 100| GetResourceCounts: function() { return { food: 100 }; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPopulationLimit' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 95| 95| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 96| 96| CanControlAllUnits: function() { return false; }, | 97| 97| GetPopulationCount: function() { return 10; }, | 98| |- GetPopulationLimit: function() { return 20; }, | | 98|+ "GetPopulationLimit": function() { return 20; }, | 99| 99| GetMaxPopulation: function() { return 200; }, | 100| 100| GetResourceCounts: function() { return { food: 100 }; }, | 101| 101| GetPanelEntities: function() { return []; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetMaxPopulation' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 96| 96| CanControlAllUnits: function() { return false; }, | 97| 97| GetPopulationCount: function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | 99| |- GetMaxPopulation: function() { return 200; }, | | 99|+ "GetMaxPopulation": function() { return 200; }, | 100| 100| GetResourceCounts: function() { return { food: 100 }; }, | 101| 101| GetPanelEntities: function() { return []; }, | 102| 102| IsTrainingBlocked: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetResourceCounts' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 97| 97| GetPopulationCount: function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | 99| 99| GetMaxPopulation: function() { return 200; }, | 100| |- GetResourceCounts: function() { return { food: 100 }; }, | | 100|+ "GetResourceCounts": function() { return { food: 100 }; }, | 101| 101| GetPanelEntities: function() { return []; }, | 102| 102| IsTrainingBlocked: function() { return false; }, | 103| 103| GetState: function() { return "active"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 97| 97| GetPopulationCount: function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | 99| 99| GetMaxPopulation: function() { return 200; }, | 100| |- GetResourceCounts: function() { return { food: 100 }; }, | | 100|+ GetResourceCounts: function() { return { "food": 100 }; }, | 101| 101| GetPanelEntities: function() { return []; }, | 102| 102| IsTrainingBlocked: function() { return false; }, | 103| 103| GetState: function() { return "active"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPanelEntities' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 98| 98| GetPopulationLimit: function() { return 20; }, | 99| 99| GetMaxPopulation: function() { return 200; }, | 100| 100| GetResourceCounts: function() { return { food: 100 }; }, | 101| |- GetPanelEntities: function() { return []; }, | | 101|+ "GetPanelEntities": function() { return []; }, | 102| 102| IsTrainingBlocked: function() { return false; }, | 103| 103| GetState: function() { return "active"; }, | 104| 104| GetTeam: function() { return -1; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsTrainingBlocked' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 99| 99| GetMaxPopulation: function() { return 200; }, | 100| 100| GetResourceCounts: function() { return { food: 100 }; }, | 101| 101| GetPanelEntities: function() { return []; }, | 102| |- IsTrainingBlocked: function() { return false; }, | | 102|+ "IsTrainingBlocked": function() { return false; }, | 103| 103| GetState: function() { return "active"; }, | 104| 104| GetTeam: function() { return -1; }, | 105| 105| GetLockTeams: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetState' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 100| 100| GetResourceCounts: function() { return { food: 100 }; }, | 101| 101| GetPanelEntities: function() { return []; }, | 102| 102| IsTrainingBlocked: function() { return false; }, | 103| |- GetState: function() { return "active"; }, | | 103|+ "GetState": function() { return "active"; }, | 104| 104| GetTeam: function() { return -1; }, | 105| 105| GetLockTeams: function() { return false; }, | 106| 106| GetCheatsEnabled: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTeam' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 101| 101| GetPanelEntities: function() { return []; }, | 102| 102| IsTrainingBlocked: function() { return false; }, | 103| 103| GetState: function() { return "active"; }, | 104| |- GetTeam: function() { return -1; }, | | 104|+ "GetTeam": function() { return -1; }, | 105| 105| GetLockTeams: function() { return false; }, | 106| 106| GetCheatsEnabled: function() { return false; }, | 107| 107| GetDiplomacy: function() { return [-1, 1]; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLockTeams' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 102| 102| IsTrainingBlocked: function() { return false; }, | 103| 103| GetState: function() { return "active"; }, | 104| 104| GetTeam: function() { return -1; }, | 105| |- GetLockTeams: function() { return false; }, | | 105|+ "GetLockTeams": function() { return false; }, | 106| 106| GetCheatsEnabled: function() { return false; }, | 107| 107| GetDiplomacy: function() { return [-1, 1]; }, | 108| 108| IsAlly: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCheatsEnabled' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 103| 103| GetState: function() { return "active"; }, | 104| 104| GetTeam: function() { return -1; }, | 105| 105| GetLockTeams: function() { return false; }, | 106| |- GetCheatsEnabled: function() { return false; }, | | 106|+ "GetCheatsEnabled": function() { return false; }, | 107| 107| GetDiplomacy: function() { return [-1, 1]; }, | 108| 108| IsAlly: function() { return false; }, | 109| 109| IsMutualAlly: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDiplomacy' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 104| 104| GetTeam: function() { return -1; }, | 105| 105| GetLockTeams: function() { return false; }, | 106| 106| GetCheatsEnabled: function() { return false; }, | 107| |- GetDiplomacy: function() { return [-1, 1]; }, | | 107|+ "GetDiplomacy": function() { return [-1, 1]; }, | 108| 108| IsAlly: function() { return false; }, | 109| 109| IsMutualAlly: function() { return false; }, | 110| 110| IsNeutral: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsAlly' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 105| 105| GetLockTeams: function() { return false; }, | 106| 106| GetCheatsEnabled: function() { return false; }, | 107| 107| GetDiplomacy: function() { return [-1, 1]; }, | 108| |- IsAlly: function() { return false; }, | | 108|+ "IsAlly": function() { return false; }, | 109| 109| IsMutualAlly: function() { return false; }, | 110| 110| IsNeutral: function() { return false; }, | 111| 111| IsEnemy: function() { return true; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsMutualAlly' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 106| 106| GetCheatsEnabled: function() { return false; }, | 107| 107| GetDiplomacy: function() { return [-1, 1]; }, | 108| 108| IsAlly: function() { return false; }, | 109| |- IsMutualAlly: function() { return false; }, | | 109|+ "IsMutualAlly": function() { return false; }, | 110| 110| IsNeutral: function() { return false; }, | 111| 111| IsEnemy: function() { return true; }, | 112| 112| GetDisabledTemplates: function() { return {}; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsNeutral' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 107| 107| GetDiplomacy: function() { return [-1, 1]; }, | 108| 108| IsAlly: function() { return false; }, | 109| 109| IsMutualAlly: function() { return false; }, | 110| |- IsNeutral: function() { return false; }, | | 110|+ "IsNeutral": function() { return false; }, | 111| 111| IsEnemy: function() { return true; }, | 112| 112| GetDisabledTemplates: function() { return {}; }, | 113| 113| GetDisabledTechnologies: function() { return {}; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsEnemy' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 108| 108| IsAlly: function() { return false; }, | 109| 109| IsMutualAlly: function() { return false; }, | 110| 110| IsNeutral: function() { return false; }, | 111| |- IsEnemy: function() { return true; }, | | 111|+ "IsEnemy": function() { return true; }, | 112| 112| GetDisabledTemplates: function() { return {}; }, | 113| 113| GetDisabledTechnologies: function() { return {}; }, | 114| 114| GetSpyCostMultiplier: function() { return 1; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDisabledTemplates' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 109| 109| IsMutualAlly: function() { return false; }, | 110| 110| IsNeutral: function() { return false; }, | 111| 111| IsEnemy: function() { return true; }, | 112| |- GetDisabledTemplates: function() { return {}; }, | | 112|+ "GetDisabledTemplates": function() { return {}; }, | 113| 113| GetDisabledTechnologies: function() { return {}; }, | 114| 114| GetSpyCostMultiplier: function() { return 1; }, | 115| 115| HasSharedDropsites: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDisabledTechnologies' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 110| 110| IsNeutral: function() { return false; }, | 111| 111| IsEnemy: function() { return true; }, | 112| 112| GetDisabledTemplates: function() { return {}; }, | 113| |- GetDisabledTechnologies: function() { return {}; }, | | 113|+ "GetDisabledTechnologies": function() { return {}; }, | 114| 114| GetSpyCostMultiplier: function() { return 1; }, | 115| 115| HasSharedDropsites: function() { return false; }, | 116| 116| HasSharedLos: function() { return false; } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSpyCostMultiplier' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 111| 111| IsEnemy: function() { return true; }, | 112| 112| GetDisabledTemplates: function() { return {}; }, | 113| 113| GetDisabledTechnologies: function() { return {}; }, | 114| |- GetSpyCostMultiplier: function() { return 1; }, | | 114|+ "GetSpyCostMultiplier": function() { return 1; }, | 115| 115| HasSharedDropsites: function() { return false; }, | 116| 116| HasSharedLos: function() { return false; } | 117| 117| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasSharedDropsites' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 112| 112| GetDisabledTemplates: function() { return {}; }, | 113| 113| GetDisabledTechnologies: function() { return {}; }, | 114| 114| GetSpyCostMultiplier: function() { return 1; }, | 115| |- HasSharedDropsites: function() { return false; }, | | 115|+ "HasSharedDropsites": function() { return false; }, | 116| 116| HasSharedLos: function() { return false; } | 117| 117| }); | 118| 118| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasSharedLos' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 113| 113| GetDisabledTechnologies: function() { return {}; }, | 114| 114| GetSpyCostMultiplier: function() { return 1; }, | 115| 115| HasSharedDropsites: function() { return false; }, | 116| |- HasSharedLos: function() { return false; } | | 116|+ "HasSharedLos": function() { return false; } | 117| 117| }); | 118| 118| | 119| 119| AddMock(100, IID_EntityLimits, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLimits' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 117| 117| }); | 118| 118| | 119| 119| AddMock(100, IID_EntityLimits, { | 120| |- GetLimits: function() { return {"Foo": 10}; }, | | 120|+ "GetLimits": function() { return {"Foo": 10}; }, | 121| 121| GetCounts: function() { return {"Foo": 5}; }, | 122| 122| GetLimitChangers: function() {return {"Foo": {}}; } | 123| 123| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 117| 117| }); | 118| 118| | 119| 119| AddMock(100, IID_EntityLimits, { | 120| |- GetLimits: function() { return {"Foo": 10}; }, | | 120|+ GetLimits: function() { return { "Foo": 10}; }, | 121| 121| GetCounts: function() { return {"Foo": 5}; }, | 122| 122| GetLimitChangers: function() {return {"Foo": {}}; } | 123| 123| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 117| 117| }); | 118| 118| | 119| 119| AddMock(100, IID_EntityLimits, { | 120| |- GetLimits: function() { return {"Foo": 10}; }, | | 120|+ GetLimits: function() { return {"Foo": 10 }; }, | 121| 121| GetCounts: function() { return {"Foo": 5}; }, | 122| 122| GetLimitChangers: function() {return {"Foo": {}}; } | 123| 123| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCounts' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 118| 118| | 119| 119| AddMock(100, IID_EntityLimits, { | 120| 120| GetLimits: function() { return {"Foo": 10}; }, | 121| |- GetCounts: function() { return {"Foo": 5}; }, | | 121|+ "GetCounts": function() { return {"Foo": 5}; }, | 122| 122| GetLimitChangers: function() {return {"Foo": {}}; } | 123| 123| }); | 124| 124| | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 118| 118| | 119| 119| AddMock(100, IID_EntityLimits, { | 120| 120| GetLimits: function() { return {"Foo": 10}; }, | 121| |- GetCounts: function() { return {"Foo": 5}; }, | | 121|+ GetCounts: function() { return { "Foo": 5}; }, | 122| 122| GetLimitChangers: function() {return {"Foo": {}}; } | 123| 123| }); | 124| 124| | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 118| 118| | 119| 119| AddMock(100, IID_EntityLimits, { | 120| 120| GetLimits: function() { return {"Foo": 10}; }, | 121| |- GetCounts: function() { return {"Foo": 5}; }, | | 121|+ GetCounts: function() { return {"Foo": 5 }; }, | 122| 122| GetLimitChangers: function() {return {"Foo": {}}; } | 123| 123| }); | 124| 124| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLimitChangers' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 119| 119| AddMock(100, IID_EntityLimits, { | 120| 120| GetLimits: function() { return {"Foo": 10}; }, | 121| 121| GetCounts: function() { return {"Foo": 5}; }, | 122| |- GetLimitChangers: function() {return {"Foo": {}}; } | | 122|+ "GetLimitChangers": function() {return {"Foo": {}}; } | 123| 123| }); | 124| 124| | 125| 125| AddMock(100, IID_TechnologyManager, { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 119| 119| AddMock(100, IID_EntityLimits, { | 120| 120| GetLimits: function() { return {"Foo": 10}; }, | 121| 121| GetCounts: function() { return {"Foo": 5}; }, | 122| |- GetLimitChangers: function() {return {"Foo": {}}; } | | 122|+ GetLimitChangers: function() {return { "Foo": {}}; } | 123| 123| }); | 124| 124| | 125| 125| AddMock(100, IID_TechnologyManager, { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 119| 119| AddMock(100, IID_EntityLimits, { | 120| 120| GetLimits: function() { return {"Foo": 10}; }, | 121| 121| GetCounts: function() { return {"Foo": 5}; }, | 122| |- GetLimitChangers: function() {return {"Foo": {}}; } | | 122|+ GetLimitChangers: function() {return {"Foo": {} }; } | 123| 123| }); | 124| 124| | 125| 125| AddMock(100, IID_TechnologyManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetBasicStatistics' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 132| 132| }); | 133| 133| | 134| 134| AddMock(100, IID_StatisticsTracker, { | 135| |- GetBasicStatistics: function() { | | 135|+ "GetBasicStatistics": function() { | 136| 136| return { | 137| 137| "resourcesGathered": { | 138| 138| "food": 100, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSequences' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 144| 144| "percentMapExplored": 10 | 145| 145| }; | 146| 146| }, | 147| |- GetSequences: function() { | | 147|+ "GetSequences": function() { | 148| 148| return { | 149| 149| "unitsTrained": [0, 10], | 150| 150| "unitsLost": [0, 42], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseTrainedUnitsCounter' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 169| 169| "teamPeakPercentOfMapControlled": [0, 10] | 170| 170| }; | 171| 171| }, | 172| |- IncreaseTrainedUnitsCounter: function() { return 1; }, | | 172|+ "IncreaseTrainedUnitsCounter": function() { return 1; }, | 173| 173| IncreaseConstructedBuildingsCounter: function() { return 1; }, | 174| 174| IncreaseBuiltCivCentresCounter: function() { return 1; } | 175| 175| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseConstructedBuildingsCounter' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 170| 170| }; | 171| 171| }, | 172| 172| IncreaseTrainedUnitsCounter: function() { return 1; }, | 173| |- IncreaseConstructedBuildingsCounter: function() { return 1; }, | | 173|+ "IncreaseConstructedBuildingsCounter": function() { return 1; }, | 174| 174| IncreaseBuiltCivCentresCounter: function() { return 1; } | 175| 175| }); | 176| 176| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseBuiltCivCentresCounter' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 171| 171| }, | 172| 172| IncreaseTrainedUnitsCounter: function() { return 1; }, | 173| 173| IncreaseConstructedBuildingsCounter: function() { return 1; }, | 174| |- IncreaseBuiltCivCentresCounter: function() { return 1; } | | 174|+ "IncreaseBuiltCivCentresCounter": function() { return 1; } | 175| 175| }); | 176| 176| | 177| 177| AddMock(101, IID_Player, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetName' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 175| 175| }); | 176| 176| | 177| 177| AddMock(101, IID_Player, { | 178| |- GetName: function() { return "Player 2"; }, | | 178|+ "GetName": function() { return "Player 2"; }, | 179| 179| GetCiv: function() { return "mace"; }, | 180| 180| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 181| 181| CanControlAllUnits: function() { return true; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCiv' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 176| 176| | 177| 177| AddMock(101, IID_Player, { | 178| 178| GetName: function() { return "Player 2"; }, | 179| |- GetCiv: function() { return "mace"; }, | | 179|+ "GetCiv": function() { return "mace"; }, | 180| 180| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 181| 181| CanControlAllUnits: function() { return true; }, | 182| 182| GetPopulationCount: function() { return 40; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetColor' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 177| 177| AddMock(101, IID_Player, { | 178| 178| GetName: function() { return "Player 2"; }, | 179| 179| GetCiv: function() { return "mace"; }, | 180| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 180|+ "GetColor": function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 181| 181| CanControlAllUnits: function() { return true; }, | 182| 182| GetPopulationCount: function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'r' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 177| 177| AddMock(101, IID_Player, { | 178| 178| GetName: function() { return "Player 2"; }, | 179| 179| GetCiv: function() { return "mace"; }, | 180| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 180|+ GetColor: function() { return { "r": 1, g: 0, b: 0, a: 1}; }, | 181| 181| CanControlAllUnits: function() { return true; }, | 182| 182| GetPopulationCount: function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'g' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 177| 177| AddMock(101, IID_Player, { | 178| 178| GetName: function() { return "Player 2"; }, | 179| 179| GetCiv: function() { return "mace"; }, | 180| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 180|+ GetColor: function() { return { r: 1, "g": 0, b: 0, a: 1}; }, | 181| 181| CanControlAllUnits: function() { return true; }, | 182| 182| GetPopulationCount: function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'b' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 177| 177| AddMock(101, IID_Player, { | 178| 178| GetName: function() { return "Player 2"; }, | 179| 179| GetCiv: function() { return "mace"; }, | 180| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 180|+ GetColor: function() { return { r: 1, g: 0, "b": 0, a: 1}; }, | 181| 181| CanControlAllUnits: function() { return true; }, | 182| 182| GetPopulationCount: function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'a' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 177| 177| AddMock(101, IID_Player, { | 178| 178| GetName: function() { return "Player 2"; }, | 179| 179| GetCiv: function() { return "mace"; }, | 180| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 180|+ GetColor: function() { return { r: 1, g: 0, b: 0, "a": 1}; }, | 181| 181| CanControlAllUnits: function() { return true; }, | 182| 182| GetPopulationCount: function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 177| 177| AddMock(101, IID_Player, { | 178| 178| GetName: function() { return "Player 2"; }, | 179| 179| GetCiv: function() { return "mace"; }, | 180| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 180|+ GetColor: function() { return { r: 1, g: 0, b: 0, a: 1 }; }, | 181| 181| CanControlAllUnits: function() { return true; }, | 182| 182| GetPopulationCount: function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'CanControlAllUnits' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 178| 178| GetName: function() { return "Player 2"; }, | 179| 179| GetCiv: function() { return "mace"; }, | 180| 180| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 181| |- CanControlAllUnits: function() { return true; }, | | 181|+ "CanControlAllUnits": function() { return true; }, | 182| 182| GetPopulationCount: function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | 184| 184| GetMaxPopulation: function() { return 300; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPopulationCount' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 179| 179| GetCiv: function() { return "mace"; }, | 180| 180| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 181| 181| CanControlAllUnits: function() { return true; }, | 182| |- GetPopulationCount: function() { return 40; }, | | 182|+ "GetPopulationCount": function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | 184| 184| GetMaxPopulation: function() { return 300; }, | 185| 185| GetResourceCounts: function() { return { food: 200 }; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPopulationLimit' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 180| 180| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 181| 181| CanControlAllUnits: function() { return true; }, | 182| 182| GetPopulationCount: function() { return 40; }, | 183| |- GetPopulationLimit: function() { return 30; }, | | 183|+ "GetPopulationLimit": function() { return 30; }, | 184| 184| GetMaxPopulation: function() { return 300; }, | 185| 185| GetResourceCounts: function() { return { food: 200 }; }, | 186| 186| GetPanelEntities: function() { return []; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetMaxPopulation' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 181| 181| CanControlAllUnits: function() { return true; }, | 182| 182| GetPopulationCount: function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | 184| |- GetMaxPopulation: function() { return 300; }, | | 184|+ "GetMaxPopulation": function() { return 300; }, | 185| 185| GetResourceCounts: function() { return { food: 200 }; }, | 186| 186| GetPanelEntities: function() { return []; }, | 187| 187| IsTrainingBlocked: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetResourceCounts' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 182| 182| GetPopulationCount: function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | 184| 184| GetMaxPopulation: function() { return 300; }, | 185| |- GetResourceCounts: function() { return { food: 200 }; }, | | 185|+ "GetResourceCounts": function() { return { food: 200 }; }, | 186| 186| GetPanelEntities: function() { return []; }, | 187| 187| IsTrainingBlocked: function() { return false; }, | 188| 188| GetState: function() { return "active"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 182| 182| GetPopulationCount: function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | 184| 184| GetMaxPopulation: function() { return 300; }, | 185| |- GetResourceCounts: function() { return { food: 200 }; }, | | 185|+ GetResourceCounts: function() { return { "food": 200 }; }, | 186| 186| GetPanelEntities: function() { return []; }, | 187| 187| IsTrainingBlocked: function() { return false; }, | 188| 188| GetState: function() { return "active"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPanelEntities' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 183| 183| GetPopulationLimit: function() { return 30; }, | 184| 184| GetMaxPopulation: function() { return 300; }, | 185| 185| GetResourceCounts: function() { return { food: 200 }; }, | 186| |- GetPanelEntities: function() { return []; }, | | 186|+ "GetPanelEntities": function() { return []; }, | 187| 187| IsTrainingBlocked: function() { return false; }, | 188| 188| GetState: function() { return "active"; }, | 189| 189| GetTeam: function() { return -1; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsTrainingBlocked' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 184| 184| GetMaxPopulation: function() { return 300; }, | 185| 185| GetResourceCounts: function() { return { food: 200 }; }, | 186| 186| GetPanelEntities: function() { return []; }, | 187| |- IsTrainingBlocked: function() { return false; }, | | 187|+ "IsTrainingBlocked": function() { return false; }, | 188| 188| GetState: function() { return "active"; }, | 189| 189| GetTeam: function() { return -1; }, | 190| 190| GetLockTeams: function() {return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetState' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 185| 185| GetResourceCounts: function() { return { food: 200 }; }, | 186| 186| GetPanelEntities: function() { return []; }, | 187| 187| IsTrainingBlocked: function() { return false; }, | 188| |- GetState: function() { return "active"; }, | | 188|+ "GetState": function() { return "active"; }, | 189| 189| GetTeam: function() { return -1; }, | 190| 190| GetLockTeams: function() {return false; }, | 191| 191| GetCheatsEnabled: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTeam' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 186| 186| GetPanelEntities: function() { return []; }, | 187| 187| IsTrainingBlocked: function() { return false; }, | 188| 188| GetState: function() { return "active"; }, | 189| |- GetTeam: function() { return -1; }, | | 189|+ "GetTeam": function() { return -1; }, | 190| 190| GetLockTeams: function() {return false; }, | 191| 191| GetCheatsEnabled: function() { return false; }, | 192| 192| GetDiplomacy: function() { return [-1, 1]; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLockTeams' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 187| 187| IsTrainingBlocked: function() { return false; }, | 188| 188| GetState: function() { return "active"; }, | 189| 189| GetTeam: function() { return -1; }, | 190| |- GetLockTeams: function() {return false; }, | | 190|+ "GetLockTeams": function() {return false; }, | 191| 191| GetCheatsEnabled: function() { return false; }, | 192| 192| GetDiplomacy: function() { return [-1, 1]; }, | 193| 193| IsAlly: function() { return true; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCheatsEnabled' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 188| 188| GetState: function() { return "active"; }, | 189| 189| GetTeam: function() { return -1; }, | 190| 190| GetLockTeams: function() {return false; }, | 191| |- GetCheatsEnabled: function() { return false; }, | | 191|+ "GetCheatsEnabled": function() { return false; }, | 192| 192| GetDiplomacy: function() { return [-1, 1]; }, | 193| 193| IsAlly: function() { return true; }, | 194| 194| IsMutualAlly: function() {return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDiplomacy' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 189| 189| GetTeam: function() { return -1; }, | 190| 190| GetLockTeams: function() {return false; }, | 191| 191| GetCheatsEnabled: function() { return false; }, | 192| |- GetDiplomacy: function() { return [-1, 1]; }, | | 192|+ "GetDiplomacy": function() { return [-1, 1]; }, | 193| 193| IsAlly: function() { return true; }, | 194| 194| IsMutualAlly: function() {return false; }, | 195| 195| IsNeutral: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsAlly' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 190| 190| GetLockTeams: function() {return false; }, | 191| 191| GetCheatsEnabled: function() { return false; }, | 192| 192| GetDiplomacy: function() { return [-1, 1]; }, | 193| |- IsAlly: function() { return true; }, | | 193|+ "IsAlly": function() { return true; }, | 194| 194| IsMutualAlly: function() {return false; }, | 195| 195| IsNeutral: function() { return false; }, | 196| 196| IsEnemy: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsMutualAlly' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 191| 191| GetCheatsEnabled: function() { return false; }, | 192| 192| GetDiplomacy: function() { return [-1, 1]; }, | 193| 193| IsAlly: function() { return true; }, | 194| |- IsMutualAlly: function() {return false; }, | | 194|+ "IsMutualAlly": function() {return false; }, | 195| 195| IsNeutral: function() { return false; }, | 196| 196| IsEnemy: function() { return false; }, | 197| 197| GetDisabledTemplates: function() { return {}; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsNeutral' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 192| 192| GetDiplomacy: function() { return [-1, 1]; }, | 193| 193| IsAlly: function() { return true; }, | 194| 194| IsMutualAlly: function() {return false; }, | 195| |- IsNeutral: function() { return false; }, | | 195|+ "IsNeutral": function() { return false; }, | 196| 196| IsEnemy: function() { return false; }, | 197| 197| GetDisabledTemplates: function() { return {}; }, | 198| 198| GetDisabledTechnologies: function() { return {}; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsEnemy' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 193| 193| IsAlly: function() { return true; }, | 194| 194| IsMutualAlly: function() {return false; }, | 195| 195| IsNeutral: function() { return false; }, | 196| |- IsEnemy: function() { return false; }, | | 196|+ "IsEnemy": function() { return false; }, | 197| 197| GetDisabledTemplates: function() { return {}; }, | 198| 198| GetDisabledTechnologies: function() { return {}; }, | 199| 199| GetSpyCostMultiplier: function() { return 1; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDisabledTemplates' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 194| 194| IsMutualAlly: function() {return false; }, | 195| 195| IsNeutral: function() { return false; }, | 196| 196| IsEnemy: function() { return false; }, | 197| |- GetDisabledTemplates: function() { return {}; }, | | 197|+ "GetDisabledTemplates": function() { return {}; }, | 198| 198| GetDisabledTechnologies: function() { return {}; }, | 199| 199| GetSpyCostMultiplier: function() { return 1; }, | 200| 200| HasSharedDropsites: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDisabledTechnologies' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 195| 195| IsNeutral: function() { return false; }, | 196| 196| IsEnemy: function() { return false; }, | 197| 197| GetDisabledTemplates: function() { return {}; }, | 198| |- GetDisabledTechnologies: function() { return {}; }, | | 198|+ "GetDisabledTechnologies": function() { return {}; }, | 199| 199| GetSpyCostMultiplier: function() { return 1; }, | 200| 200| HasSharedDropsites: function() { return false; }, | 201| 201| HasSharedLos: function() { return false; } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSpyCostMultiplier' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 196| 196| IsEnemy: function() { return false; }, | 197| 197| GetDisabledTemplates: function() { return {}; }, | 198| 198| GetDisabledTechnologies: function() { return {}; }, | 199| |- GetSpyCostMultiplier: function() { return 1; }, | | 199|+ "GetSpyCostMultiplier": function() { return 1; }, | 200| 200| HasSharedDropsites: function() { return false; }, | 201| 201| HasSharedLos: function() { return false; } | 202| 202| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasSharedDropsites' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 197| 197| GetDisabledTemplates: function() { return {}; }, | 198| 198| GetDisabledTechnologies: function() { return {}; }, | 199| 199| GetSpyCostMultiplier: function() { return 1; }, | 200| |- HasSharedDropsites: function() { return false; }, | | 200|+ "HasSharedDropsites": function() { return false; }, | 201| 201| HasSharedLos: function() { return false; } | 202| 202| }); | 203| 203| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasSharedLos' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 198| 198| GetDisabledTechnologies: function() { return {}; }, | 199| 199| GetSpyCostMultiplier: function() { return 1; }, | 200| 200| HasSharedDropsites: function() { return false; }, | 201| |- HasSharedLos: function() { return false; } | | 201|+ "HasSharedLos": function() { return false; } | 202| 202| }); | 203| 203| | 204| 204| AddMock(101, IID_EntityLimits, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLimits' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 202| 202| }); | 203| 203| | 204| 204| AddMock(101, IID_EntityLimits, { | 205| |- GetLimits: function() { return {"Bar": 20}; }, | | 205|+ "GetLimits": function() { return {"Bar": 20}; }, | 206| 206| GetCounts: function() { return {"Bar": 0}; }, | 207| 207| GetLimitChangers: function() {return {"Bar": {}}; } | 208| 208| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 202| 202| }); | 203| 203| | 204| 204| AddMock(101, IID_EntityLimits, { | 205| |- GetLimits: function() { return {"Bar": 20}; }, | | 205|+ GetLimits: function() { return { "Bar": 20}; }, | 206| 206| GetCounts: function() { return {"Bar": 0}; }, | 207| 207| GetLimitChangers: function() {return {"Bar": {}}; } | 208| 208| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 202| 202| }); | 203| 203| | 204| 204| AddMock(101, IID_EntityLimits, { | 205| |- GetLimits: function() { return {"Bar": 20}; }, | | 205|+ GetLimits: function() { return {"Bar": 20 }; }, | 206| 206| GetCounts: function() { return {"Bar": 0}; }, | 207| 207| GetLimitChangers: function() {return {"Bar": {}}; } | 208| 208| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCounts' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 203| 203| | 204| 204| AddMock(101, IID_EntityLimits, { | 205| 205| GetLimits: function() { return {"Bar": 20}; }, | 206| |- GetCounts: function() { return {"Bar": 0}; }, | | 206|+ "GetCounts": function() { return {"Bar": 0}; }, | 207| 207| GetLimitChangers: function() {return {"Bar": {}}; } | 208| 208| }); | 209| 209| | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 203| 203| | 204| 204| AddMock(101, IID_EntityLimits, { | 205| 205| GetLimits: function() { return {"Bar": 20}; }, | 206| |- GetCounts: function() { return {"Bar": 0}; }, | | 206|+ GetCounts: function() { return { "Bar": 0}; }, | 207| 207| GetLimitChangers: function() {return {"Bar": {}}; } | 208| 208| }); | 209| 209| | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 203| 203| | 204| 204| AddMock(101, IID_EntityLimits, { | 205| 205| GetLimits: function() { return {"Bar": 20}; }, | 206| |- GetCounts: function() { return {"Bar": 0}; }, | | 206|+ GetCounts: function() { return {"Bar": 0 }; }, | 207| 207| GetLimitChangers: function() {return {"Bar": {}}; } | 208| 208| }); | 209| 209| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLimitChangers' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 204| 204| AddMock(101, IID_EntityLimits, { | 205| 205| GetLimits: function() { return {"Bar": 20}; }, | 206| 206| GetCounts: function() { return {"Bar": 0}; }, | 207| |- GetLimitChangers: function() {return {"Bar": {}}; } | | 207|+ "GetLimitChangers": function() {return {"Bar": {}}; } | 208| 208| }); | 209| 209| | 210| 210| AddMock(101, IID_TechnologyManager, { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 204| 204| AddMock(101, IID_EntityLimits, { | 205| 205| GetLimits: function() { return {"Bar": 20}; }, | 206| 206| GetCounts: function() { return {"Bar": 0}; }, | 207| |- GetLimitChangers: function() {return {"Bar": {}}; } | | 207|+ GetLimitChangers: function() {return { "Bar": {}}; } | 208| 208| }); | 209| 209| | 210| 210| AddMock(101, IID_TechnologyManager, { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 204| 204| AddMock(101, IID_EntityLimits, { | 205| 205| GetLimits: function() { return {"Bar": 20}; }, | 206| 206| GetCounts: function() { return {"Bar": 0}; }, | 207| |- GetLimitChangers: function() {return {"Bar": {}}; } | | 207|+ GetLimitChangers: function() {return {"Bar": {} }; } | 208| 208| }); | 209| 209| | 210| 210| AddMock(101, IID_TechnologyManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetBasicStatistics' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 217| 217| }); | 218| 218| | 219| 219| AddMock(101, IID_StatisticsTracker, { | 220| |- GetBasicStatistics: function() { | | 220|+ "GetBasicStatistics": function() { | 221| 221| return { | 222| 222| "resourcesGathered": { | 223| 223| "food": 100, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSequences' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 229| 229| "percentMapExplored": 10 | 230| 230| }; | 231| 231| }, | 232| |- GetSequences: function() { | | 232|+ "GetSequences": function() { | 233| 233| return { | 234| 234| "unitsTrained": [0, 10], | 235| 235| "unitsLost": [0, 9], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseTrainedUnitsCounter' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 254| 254| "teamPeakPercentOfMapControlled": [0, 10] | 255| 255| }; | 256| 256| }, | 257| |- IncreaseTrainedUnitsCounter: function() { return 1; }, | | 257|+ "IncreaseTrainedUnitsCounter": function() { return 1; }, | 258| 258| IncreaseConstructedBuildingsCounter: function() { return 1; }, | 259| 259| IncreaseBuiltCivCentresCounter: function() { return 1; } | 260| 260| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseConstructedBuildingsCounter' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 255| 255| }; | 256| 256| }, | 257| 257| IncreaseTrainedUnitsCounter: function() { return 1; }, | 258| |- IncreaseConstructedBuildingsCounter: function() { return 1; }, | | 258|+ "IncreaseConstructedBuildingsCounter": function() { return 1; }, | 259| 259| IncreaseBuiltCivCentresCounter: function() { return 1; } | 260| 260| }); | 261| 261| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseBuiltCivCentresCounter' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 256| 256| }, | 257| 257| IncreaseTrainedUnitsCounter: function() { return 1; }, | 258| 258| IncreaseConstructedBuildingsCounter: function() { return 1; }, | 259| |- IncreaseBuiltCivCentresCounter: function() { return 1; } | | 259|+ "IncreaseBuiltCivCentresCounter": function() { return 1; } | 260| 260| }); | 261| 261| | 262| 262| // Note: property order matters when using TS_ASSERT_UNEVAL_EQUALS, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'players' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 263| 263| // because uneval preserves property order. So make sure this object | 264| 264| // matches the ordering in GuiInterface. | 265| 265| TS_ASSERT_UNEVAL_EQUALS(cmp.GetSimulationState(), { | 266| |- players: [ | | 266|+ "players": [ | 267| 267| { | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'name' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 265| 265| TS_ASSERT_UNEVAL_EQUALS(cmp.GetSimulationState(), { | 266| 266| players: [ | 267| 267| { | 268| |- name: "Player 1", | | 268|+ "name": "Player 1", | 269| 269| civ: "gaia", | 270| 270| color: { r:1, g:1, b:1, a:1 }, | 271| 271| controlsAll: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'civ' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 266| 266| players: [ | 267| 267| { | 268| 268| name: "Player 1", | 269| |- civ: "gaia", | | 269|+ "civ": "gaia", | 270| 270| color: { r:1, g:1, b:1, a:1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'color' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| { | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | 270| |- color: { r:1, g:1, b:1, a:1 }, | | 270|+ "color": { r:1, g:1, b:1, a:1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'r' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| { | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | 270| |- color: { r:1, g:1, b:1, a:1 }, | | 270|+ color: { "r":1, g:1, b:1, a:1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'r'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| { | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | 270| |- color: { r:1, g:1, b:1, a:1 }, | | 270|+ color: { r: 1, g:1, b:1, a:1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'g' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| { | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | 270| |- color: { r:1, g:1, b:1, a:1 }, | | 270|+ color: { r:1, "g":1, b:1, a:1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'g'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| { | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | 270| |- color: { r:1, g:1, b:1, a:1 }, | | 270|+ color: { r:1, g: 1, b:1, a:1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'b' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| { | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | 270| |- color: { r:1, g:1, b:1, a:1 }, | | 270|+ color: { r:1, g:1, "b":1, a:1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'b'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| { | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | 270| |- color: { r:1, g:1, b:1, a:1 }, | | 270|+ color: { r:1, g:1, b: 1, a:1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'a' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| { | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | 270| |- color: { r:1, g:1, b:1, a:1 }, | | 270|+ color: { r:1, g:1, b:1, "a":1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'a'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| { | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | 270| |- color: { r:1, g:1, b:1, a:1 }, | | 270|+ color: { r:1, g:1, b:1, a: 1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'controlsAll' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | 270| 270| color: { r:1, g:1, b:1, a:1 }, | 271| |- controlsAll: false, | | 271|+ "controlsAll": false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | 274| 274| popMax: 200, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popCount' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 269| 269| civ: "gaia", | 270| 270| color: { r:1, g:1, b:1, a:1 }, | 271| 271| controlsAll: false, | 272| |- popCount: 10, | | 272|+ "popCount": 10, | 273| 273| popLimit: 20, | 274| 274| popMax: 200, | 275| 275| panelEntities: [], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popLimit' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 270| 270| color: { r:1, g:1, b:1, a:1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| |- popLimit: 20, | | 273|+ "popLimit": 20, | 274| 274| popMax: 200, | 275| 275| panelEntities: [], | 276| 276| resourceCounts: { food: 100 }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popMax' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | 274| |- popMax: 200, | | 274|+ "popMax": 200, | 275| 275| panelEntities: [], | 276| 276| resourceCounts: { food: 100 }, | 277| 277| trainingBlocked: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'panelEntities' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | 274| 274| popMax: 200, | 275| |- panelEntities: [], | | 275|+ "panelEntities": [], | 276| 276| resourceCounts: { food: 100 }, | 277| 277| trainingBlocked: false, | 278| 278| state: "active", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'resourceCounts' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 273| 273| popLimit: 20, | 274| 274| popMax: 200, | 275| 275| panelEntities: [], | 276| |- resourceCounts: { food: 100 }, | | 276|+ "resourceCounts": { food: 100 }, | 277| 277| trainingBlocked: false, | 278| 278| state: "active", | 279| 279| team: -1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 273| 273| popLimit: 20, | 274| 274| popMax: 200, | 275| 275| panelEntities: [], | 276| |- resourceCounts: { food: 100 }, | | 276|+ resourceCounts: { "food": 100 }, | 277| 277| trainingBlocked: false, | 278| 278| state: "active", | 279| 279| team: -1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'trainingBlocked' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 274| 274| popMax: 200, | 275| 275| panelEntities: [], | 276| 276| resourceCounts: { food: 100 }, | 277| |- trainingBlocked: false, | | 277|+ "trainingBlocked": false, | 278| 278| state: "active", | 279| 279| team: -1, | 280| 280| teamsLocked: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'state' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 275| 275| panelEntities: [], | 276| 276| resourceCounts: { food: 100 }, | 277| 277| trainingBlocked: false, | 278| |- state: "active", | | 278|+ "state": "active", | 279| 279| team: -1, | 280| 280| teamsLocked: false, | 281| 281| cheatsEnabled: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'team' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 276| 276| resourceCounts: { food: 100 }, | 277| 277| trainingBlocked: false, | 278| 278| state: "active", | 279| |- team: -1, | | 279|+ "team": -1, | 280| 280| teamsLocked: false, | 281| 281| cheatsEnabled: false, | 282| 282| disabledTemplates: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'teamsLocked' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 277| 277| trainingBlocked: false, | 278| 278| state: "active", | 279| 279| team: -1, | 280| |- teamsLocked: false, | | 280|+ "teamsLocked": false, | 281| 281| cheatsEnabled: false, | 282| 282| disabledTemplates: {}, | 283| 283| disabledTechnologies: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'cheatsEnabled' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 278| 278| state: "active", | 279| 279| team: -1, | 280| 280| teamsLocked: false, | 281| |- cheatsEnabled: false, | | 281|+ "cheatsEnabled": false, | 282| 282| disabledTemplates: {}, | 283| 283| disabledTechnologies: {}, | 284| 284| hasSharedDropsites: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'disabledTemplates' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 279| 279| team: -1, | 280| 280| teamsLocked: false, | 281| 281| cheatsEnabled: false, | 282| |- disabledTemplates: {}, | | 282|+ "disabledTemplates": {}, | 283| 283| disabledTechnologies: {}, | 284| 284| hasSharedDropsites: false, | 285| 285| hasSharedLos: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'disabledTechnologies' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 280| 280| teamsLocked: false, | 281| 281| cheatsEnabled: false, | 282| 282| disabledTemplates: {}, | 283| |- disabledTechnologies: {}, | | 283|+ "disabledTechnologies": {}, | 284| 284| hasSharedDropsites: false, | 285| 285| hasSharedLos: false, | 286| 286| spyCostMultiplier: 1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'hasSharedDropsites' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 281| 281| cheatsEnabled: false, | 282| 282| disabledTemplates: {}, | 283| 283| disabledTechnologies: {}, | 284| |- hasSharedDropsites: false, | | 284|+ "hasSharedDropsites": false, | 285| 285| hasSharedLos: false, | 286| 286| spyCostMultiplier: 1, | 287| 287| phase: "village", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'hasSharedLos' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 282| 282| disabledTemplates: {}, | 283| 283| disabledTechnologies: {}, | 284| 284| hasSharedDropsites: false, | 285| |- hasSharedLos: false, | | 285|+ "hasSharedLos": false, | 286| 286| spyCostMultiplier: 1, | 287| 287| phase: "village", | 288| 288| isAlly: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'spyCostMultiplier' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 283| 283| disabledTechnologies: {}, | 284| 284| hasSharedDropsites: false, | 285| 285| hasSharedLos: false, | 286| |- spyCostMultiplier: 1, | | 286|+ "spyCostMultiplier": 1, | 287| 287| phase: "village", | 288| 288| isAlly: [false, false], | 289| 289| isMutualAlly: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'phase' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 284| 284| hasSharedDropsites: false, | 285| 285| hasSharedLos: false, | 286| 286| spyCostMultiplier: 1, | 287| |- phase: "village", | | 287|+ "phase": "village", | 288| 288| isAlly: [false, false], | 289| 289| isMutualAlly: [false, false], | 290| 290| isNeutral: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isAlly' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 285| 285| hasSharedLos: false, | 286| 286| spyCostMultiplier: 1, | 287| 287| phase: "village", | 288| |- isAlly: [false, false], | | 288|+ "isAlly": [false, false], | 289| 289| isMutualAlly: [false, false], | 290| 290| isNeutral: [false, false], | 291| 291| isEnemy: [true, true], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isMutualAlly' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 286| 286| spyCostMultiplier: 1, | 287| 287| phase: "village", | 288| 288| isAlly: [false, false], | 289| |- isMutualAlly: [false, false], | | 289|+ "isMutualAlly": [false, false], | 290| 290| isNeutral: [false, false], | 291| 291| isEnemy: [true, true], | 292| 292| entityLimits: {"Foo": 10}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isNeutral' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 287| 287| phase: "village", | 288| 288| isAlly: [false, false], | 289| 289| isMutualAlly: [false, false], | 290| |- isNeutral: [false, false], | | 290|+ "isNeutral": [false, false], | 291| 291| isEnemy: [true, true], | 292| 292| entityLimits: {"Foo": 10}, | 293| 293| entityCounts: {"Foo": 5}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isEnemy' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 288| 288| isAlly: [false, false], | 289| 289| isMutualAlly: [false, false], | 290| 290| isNeutral: [false, false], | 291| |- isEnemy: [true, true], | | 291|+ "isEnemy": [true, true], | 292| 292| entityLimits: {"Foo": 10}, | 293| 293| entityCounts: {"Foo": 5}, | 294| 294| entityLimitChangers: {"Foo": {}}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityLimits' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 289| 289| isMutualAlly: [false, false], | 290| 290| isNeutral: [false, false], | 291| 291| isEnemy: [true, true], | 292| |- entityLimits: {"Foo": 10}, | | 292|+ "entityLimits": {"Foo": 10}, | 293| 293| entityCounts: {"Foo": 5}, | 294| 294| entityLimitChangers: {"Foo": {}}, | 295| 295| researchQueued: new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 289| 289| isMutualAlly: [false, false], | 290| 290| isNeutral: [false, false], | 291| 291| isEnemy: [true, true], | 292| |- entityLimits: {"Foo": 10}, | | 292|+ entityLimits: { "Foo": 10}, | 293| 293| entityCounts: {"Foo": 5}, | 294| 294| entityLimitChangers: {"Foo": {}}, | 295| 295| researchQueued: new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 289| 289| isMutualAlly: [false, false], | 290| 290| isNeutral: [false, false], | 291| 291| isEnemy: [true, true], | 292| |- entityLimits: {"Foo": 10}, | | 292|+ entityLimits: {"Foo": 10 }, | 293| 293| entityCounts: {"Foo": 5}, | 294| 294| entityLimitChangers: {"Foo": {}}, | 295| 295| researchQueued: new Map(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityCounts' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 290| 290| isNeutral: [false, false], | 291| 291| isEnemy: [true, true], | 292| 292| entityLimits: {"Foo": 10}, | 293| |- entityCounts: {"Foo": 5}, | | 293|+ "entityCounts": {"Foo": 5}, | 294| 294| entityLimitChangers: {"Foo": {}}, | 295| 295| researchQueued: new Map(), | 296| 296| researchStarted: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 290| 290| isNeutral: [false, false], | 291| 291| isEnemy: [true, true], | 292| 292| entityLimits: {"Foo": 10}, | 293| |- entityCounts: {"Foo": 5}, | | 293|+ entityCounts: { "Foo": 5}, | 294| 294| entityLimitChangers: {"Foo": {}}, | 295| 295| researchQueued: new Map(), | 296| 296| researchStarted: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 290| 290| isNeutral: [false, false], | 291| 291| isEnemy: [true, true], | 292| 292| entityLimits: {"Foo": 10}, | 293| |- entityCounts: {"Foo": 5}, | | 293|+ entityCounts: {"Foo": 5 }, | 294| 294| entityLimitChangers: {"Foo": {}}, | 295| 295| researchQueued: new Map(), | 296| 296| researchStarted: new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityLimitChangers' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 291| 291| isEnemy: [true, true], | 292| 292| entityLimits: {"Foo": 10}, | 293| 293| entityCounts: {"Foo": 5}, | 294| |- entityLimitChangers: {"Foo": {}}, | | 294|+ "entityLimitChangers": {"Foo": {}}, | 295| 295| researchQueued: new Map(), | 296| 296| researchStarted: new Set(), | 297| 297| researchedTechs: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 291| 291| isEnemy: [true, true], | 292| 292| entityLimits: {"Foo": 10}, | 293| 293| entityCounts: {"Foo": 5}, | 294| |- entityLimitChangers: {"Foo": {}}, | | 294|+ entityLimitChangers: { "Foo": {}}, | 295| 295| researchQueued: new Map(), | 296| 296| researchStarted: new Set(), | 297| 297| researchedTechs: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 291| 291| isEnemy: [true, true], | 292| 292| entityLimits: {"Foo": 10}, | 293| 293| entityCounts: {"Foo": 5}, | 294| |- entityLimitChangers: {"Foo": {}}, | | 294|+ entityLimitChangers: {"Foo": {} }, | 295| 295| researchQueued: new Map(), | 296| 296| researchStarted: new Set(), | 297| 297| researchedTechs: new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchQueued' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 292| 292| entityLimits: {"Foo": 10}, | 293| 293| entityCounts: {"Foo": 5}, | 294| 294| entityLimitChangers: {"Foo": {}}, | 295| |- researchQueued: new Map(), | | 295|+ "researchQueued": new Map(), | 296| 296| researchStarted: new Set(), | 297| 297| researchedTechs: new Set(), | 298| 298| classCounts: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchStarted' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 293| 293| entityCounts: {"Foo": 5}, | 294| 294| entityLimitChangers: {"Foo": {}}, | 295| 295| researchQueued: new Map(), | 296| |- researchStarted: new Set(), | | 296|+ "researchStarted": new Set(), | 297| 297| researchedTechs: new Set(), | 298| 298| classCounts: {}, | 299| 299| typeCountsByClass: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchedTechs' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 294| 294| entityLimitChangers: {"Foo": {}}, | 295| 295| researchQueued: new Map(), | 296| 296| researchStarted: new Set(), | 297| |- researchedTechs: new Set(), | | 297|+ "researchedTechs": new Set(), | 298| 298| classCounts: {}, | 299| 299| typeCountsByClass: {}, | 300| 300| canBarter: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'classCounts' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 295| 295| researchQueued: new Map(), | 296| 296| researchStarted: new Set(), | 297| 297| researchedTechs: new Set(), | 298| |- classCounts: {}, | | 298|+ "classCounts": {}, | 299| 299| typeCountsByClass: {}, | 300| 300| canBarter: false, | 301| 301| barterPrices: { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'typeCountsByClass' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 296| 296| researchStarted: new Set(), | 297| 297| researchedTechs: new Set(), | 298| 298| classCounts: {}, | 299| |- typeCountsByClass: {}, | | 299|+ "typeCountsByClass": {}, | 300| 300| canBarter: false, | 301| 301| barterPrices: { | 302| 302| "buy": { "food": 150 }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'canBarter' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 297| 297| researchedTechs: new Set(), | 298| 298| classCounts: {}, | 299| 299| typeCountsByClass: {}, | 300| |- canBarter: false, | | 300|+ "canBarter": false, | 301| 301| barterPrices: { | 302| 302| "buy": { "food": 150 }, | 303| 303| "sell": { "food": 25 } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'barterPrices' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 298| 298| classCounts: {}, | 299| 299| typeCountsByClass: {}, | 300| 300| canBarter: false, | 301| |- barterPrices: { | | 301|+ "barterPrices": { | 302| 302| "buy": { "food": 150 }, | 303| 303| "sell": { "food": 25 } | 304| 304| }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'statistics' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 302| 302| "buy": { "food": 150 }, | 303| 303| "sell": { "food": 25 } | 304| 304| }, | 305| |- statistics: { | | 305|+ "statistics": { | 306| 306| resourcesGathered: { | 307| 307| food: 100, | 308| 308| wood: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'resourcesGathered' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 303| 303| "sell": { "food": 25 } | 304| 304| }, | 305| 305| statistics: { | 306| |- resourcesGathered: { | | 306|+ "resourcesGathered": { | 307| 307| food: 100, | 308| 308| wood: 0, | 309| 309| metal: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 304| 304| }, | 305| 305| statistics: { | 306| 306| resourcesGathered: { | 307| |- food: 100, | | 307|+ "food": 100, | 308| 308| wood: 0, | 309| 309| metal: 0, | 310| 310| stone: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'wood' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 305| 305| statistics: { | 306| 306| resourcesGathered: { | 307| 307| food: 100, | 308| |- wood: 0, | | 308|+ "wood": 0, | 309| 309| metal: 0, | 310| 310| stone: 0, | 311| 311| vegetarianFood: 0 | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'metal' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 306| 306| resourcesGathered: { | 307| 307| food: 100, | 308| 308| wood: 0, | 309| |- metal: 0, | | 309|+ "metal": 0, | 310| 310| stone: 0, | 311| 311| vegetarianFood: 0 | 312| 312| }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'stone' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 307| 307| food: 100, | 308| 308| wood: 0, | 309| 309| metal: 0, | 310| |- stone: 0, | | 310|+ "stone": 0, | 311| 311| vegetarianFood: 0 | 312| 312| }, | 313| 313| percentMapExplored: 10 | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'vegetarianFood' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 308| 308| wood: 0, | 309| 309| metal: 0, | 310| 310| stone: 0, | 311| |- vegetarianFood: 0 | | 311|+ "vegetarianFood": 0 | 312| 312| }, | 313| 313| percentMapExplored: 10 | 314| 314| } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'percentMapExplored' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 310| 310| stone: 0, | 311| 311| vegetarianFood: 0 | 312| 312| }, | 313| |- percentMapExplored: 10 | | 313|+ "percentMapExplored": 10 | 314| 314| } | 315| 315| }, | 316| 316| { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'name' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 314| 314| } | 315| 315| }, | 316| 316| { | 317| |- name: "Player 2", | | 317|+ "name": "Player 2", | 318| 318| civ: "mace", | 319| 319| color: { r:1, g:0, b:0, a:1 }, | 320| 320| controlsAll: true, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'civ' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 315| 315| }, | 316| 316| { | 317| 317| name: "Player 2", | 318| |- civ: "mace", | | 318|+ "civ": "mace", | 319| 319| color: { r:1, g:0, b:0, a:1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'color' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 316| 316| { | 317| 317| name: "Player 2", | 318| 318| civ: "mace", | 319| |- color: { r:1, g:0, b:0, a:1 }, | | 319|+ "color": { r:1, g:0, b:0, a:1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'r' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 316| 316| { | 317| 317| name: "Player 2", | 318| 318| civ: "mace", | 319| |- color: { r:1, g:0, b:0, a:1 }, | | 319|+ color: { "r":1, g:0, b:0, a:1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'r'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 316| 316| { | 317| 317| name: "Player 2", | 318| 318| civ: "mace", | 319| |- color: { r:1, g:0, b:0, a:1 }, | | 319|+ color: { r: 1, g:0, b:0, a:1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'g' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 316| 316| { | 317| 317| name: "Player 2", | 318| 318| civ: "mace", | 319| |- color: { r:1, g:0, b:0, a:1 }, | | 319|+ color: { r:1, "g":0, b:0, a:1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'g'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 316| 316| { | 317| 317| name: "Player 2", | 318| 318| civ: "mace", | 319| |- color: { r:1, g:0, b:0, a:1 }, | | 319|+ color: { r:1, g: 0, b:0, a:1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'b' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 316| 316| { | 317| 317| name: "Player 2", | 318| 318| civ: "mace", | 319| |- color: { r:1, g:0, b:0, a:1 }, | | 319|+ color: { r:1, g:0, "b":0, a:1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'b'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 316| 316| { | 317| 317| name: "Player 2", | 318| 318| civ: "mace", | 319| |- color: { r:1, g:0, b:0, a:1 }, | | 319|+ color: { r:1, g:0, b: 0, a:1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'a' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 316| 316| { | 317| 317| name: "Player 2", | 318| 318| civ: "mace", | 319| |- color: { r:1, g:0, b:0, a:1 }, | | 319|+ color: { r:1, g:0, b:0, "a":1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'a'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 316| 316| { | 317| 317| name: "Player 2", | 318| 318| civ: "mace", | 319| |- color: { r:1, g:0, b:0, a:1 }, | | 319|+ color: { r:1, g:0, b:0, a: 1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'controlsAll' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 317| 317| name: "Player 2", | 318| 318| civ: "mace", | 319| 319| color: { r:1, g:0, b:0, a:1 }, | 320| |- controlsAll: true, | | 320|+ "controlsAll": true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | 323| 323| popMax: 300, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popCount' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 318| 318| civ: "mace", | 319| 319| color: { r:1, g:0, b:0, a:1 }, | 320| 320| controlsAll: true, | 321| |- popCount: 40, | | 321|+ "popCount": 40, | 322| 322| popLimit: 30, | 323| 323| popMax: 300, | 324| 324| panelEntities: [], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popLimit' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 319| 319| color: { r:1, g:0, b:0, a:1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| |- popLimit: 30, | | 322|+ "popLimit": 30, | 323| 323| popMax: 300, | 324| 324| panelEntities: [], | 325| 325| resourceCounts: { food: 200 }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popMax' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | 323| |- popMax: 300, | | 323|+ "popMax": 300, | 324| 324| panelEntities: [], | 325| 325| resourceCounts: { food: 200 }, | 326| 326| trainingBlocked: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'panelEntities' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | 323| 323| popMax: 300, | 324| |- panelEntities: [], | | 324|+ "panelEntities": [], | 325| 325| resourceCounts: { food: 200 }, | 326| 326| trainingBlocked: false, | 327| 327| state: "active", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'resourceCounts' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 322| 322| popLimit: 30, | 323| 323| popMax: 300, | 324| 324| panelEntities: [], | 325| |- resourceCounts: { food: 200 }, | | 325|+ "resourceCounts": { food: 200 }, | 326| 326| trainingBlocked: false, | 327| 327| state: "active", | 328| 328| team: -1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 322| 322| popLimit: 30, | 323| 323| popMax: 300, | 324| 324| panelEntities: [], | 325| |- resourceCounts: { food: 200 }, | | 325|+ resourceCounts: { "food": 200 }, | 326| 326| trainingBlocked: false, | 327| 327| state: "active", | 328| 328| team: -1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'trainingBlocked' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 323| 323| popMax: 300, | 324| 324| panelEntities: [], | 325| 325| resourceCounts: { food: 200 }, | 326| |- trainingBlocked: false, | | 326|+ "trainingBlocked": false, | 327| 327| state: "active", | 328| 328| team: -1, | 329| 329| teamsLocked: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'state' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 324| 324| panelEntities: [], | 325| 325| resourceCounts: { food: 200 }, | 326| 326| trainingBlocked: false, | 327| |- state: "active", | | 327|+ "state": "active", | 328| 328| team: -1, | 329| 329| teamsLocked: false, | 330| 330| cheatsEnabled: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'team' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 325| 325| resourceCounts: { food: 200 }, | 326| 326| trainingBlocked: false, | 327| 327| state: "active", | 328| |- team: -1, | | 328|+ "team": -1, | 329| 329| teamsLocked: false, | 330| 330| cheatsEnabled: false, | 331| 331| disabledTemplates: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'teamsLocked' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 326| 326| trainingBlocked: false, | 327| 327| state: "active", | 328| 328| team: -1, | 329| |- teamsLocked: false, | | 329|+ "teamsLocked": false, | 330| 330| cheatsEnabled: false, | 331| 331| disabledTemplates: {}, | 332| 332| disabledTechnologies: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'cheatsEnabled' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 327| 327| state: "active", | 328| 328| team: -1, | 329| 329| teamsLocked: false, | 330| |- cheatsEnabled: false, | | 330|+ "cheatsEnabled": false, | 331| 331| disabledTemplates: {}, | 332| 332| disabledTechnologies: {}, | 333| 333| hasSharedDropsites: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'disabledTemplates' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 328| 328| team: -1, | 329| 329| teamsLocked: false, | 330| 330| cheatsEnabled: false, | 331| |- disabledTemplates: {}, | | 331|+ "disabledTemplates": {}, | 332| 332| disabledTechnologies: {}, | 333| 333| hasSharedDropsites: false, | 334| 334| hasSharedLos: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'disabledTechnologies' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 329| 329| teamsLocked: false, | 330| 330| cheatsEnabled: false, | 331| 331| disabledTemplates: {}, | 332| |- disabledTechnologies: {}, | | 332|+ "disabledTechnologies": {}, | 333| 333| hasSharedDropsites: false, | 334| 334| hasSharedLos: false, | 335| 335| spyCostMultiplier: 1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'hasSharedDropsites' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 330| 330| cheatsEnabled: false, | 331| 331| disabledTemplates: {}, | 332| 332| disabledTechnologies: {}, | 333| |- hasSharedDropsites: false, | | 333|+ "hasSharedDropsites": false, | 334| 334| hasSharedLos: false, | 335| 335| spyCostMultiplier: 1, | 336| 336| phase: "village", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'hasSharedLos' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 331| 331| disabledTemplates: {}, | 332| 332| disabledTechnologies: {}, | 333| 333| hasSharedDropsites: false, | 334| |- hasSharedLos: false, | | 334|+ "hasSharedLos": false, | 335| 335| spyCostMultiplier: 1, | 336| 336| phase: "village", | 337| 337| isAlly: [true, true], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'spyCostMultiplier' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 332| 332| disabledTechnologies: {}, | 333| 333| hasSharedDropsites: false, | 334| 334| hasSharedLos: false, | 335| |- spyCostMultiplier: 1, | | 335|+ "spyCostMultiplier": 1, | 336| 336| phase: "village", | 337| 337| isAlly: [true, true], | 338| 338| isMutualAlly: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'phase' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 333| 333| hasSharedDropsites: false, | 334| 334| hasSharedLos: false, | 335| 335| spyCostMultiplier: 1, | 336| |- phase: "village", | | 336|+ "phase": "village", | 337| 337| isAlly: [true, true], | 338| 338| isMutualAlly: [false, false], | 339| 339| isNeutral: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isAlly' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 334| 334| hasSharedLos: false, | 335| 335| spyCostMultiplier: 1, | 336| 336| phase: "village", | 337| |- isAlly: [true, true], | | 337|+ "isAlly": [true, true], | 338| 338| isMutualAlly: [false, false], | 339| 339| isNeutral: [false, false], | 340| 340| isEnemy: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isMutualAlly' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 335| 335| spyCostMultiplier: 1, | 336| 336| phase: "village", | 337| 337| isAlly: [true, true], | 338| |- isMutualAlly: [false, false], | | 338|+ "isMutualAlly": [false, false], | 339| 339| isNeutral: [false, false], | 340| 340| isEnemy: [false, false], | 341| 341| entityLimits: {"Bar": 20}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isNeutral' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 336| 336| phase: "village", | 337| 337| isAlly: [true, true], | 338| 338| isMutualAlly: [false, false], | 339| |- isNeutral: [false, false], | | 339|+ "isNeutral": [false, false], | 340| 340| isEnemy: [false, false], | 341| 341| entityLimits: {"Bar": 20}, | 342| 342| entityCounts: {"Bar": 0}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isEnemy' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 337| 337| isAlly: [true, true], | 338| 338| isMutualAlly: [false, false], | 339| 339| isNeutral: [false, false], | 340| |- isEnemy: [false, false], | | 340|+ "isEnemy": [false, false], | 341| 341| entityLimits: {"Bar": 20}, | 342| 342| entityCounts: {"Bar": 0}, | 343| 343| entityLimitChangers: {"Bar": {}}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityLimits' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 338| 338| isMutualAlly: [false, false], | 339| 339| isNeutral: [false, false], | 340| 340| isEnemy: [false, false], | 341| |- entityLimits: {"Bar": 20}, | | 341|+ "entityLimits": {"Bar": 20}, | 342| 342| entityCounts: {"Bar": 0}, | 343| 343| entityLimitChangers: {"Bar": {}}, | 344| 344| researchQueued: new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 338| 338| isMutualAlly: [false, false], | 339| 339| isNeutral: [false, false], | 340| 340| isEnemy: [false, false], | 341| |- entityLimits: {"Bar": 20}, | | 341|+ entityLimits: { "Bar": 20}, | 342| 342| entityCounts: {"Bar": 0}, | 343| 343| entityLimitChangers: {"Bar": {}}, | 344| 344| researchQueued: new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 338| 338| isMutualAlly: [false, false], | 339| 339| isNeutral: [false, false], | 340| 340| isEnemy: [false, false], | 341| |- entityLimits: {"Bar": 20}, | | 341|+ entityLimits: {"Bar": 20 }, | 342| 342| entityCounts: {"Bar": 0}, | 343| 343| entityLimitChangers: {"Bar": {}}, | 344| 344| researchQueued: new Map(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityCounts' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 339| 339| isNeutral: [false, false], | 340| 340| isEnemy: [false, false], | 341| 341| entityLimits: {"Bar": 20}, | 342| |- entityCounts: {"Bar": 0}, | | 342|+ "entityCounts": {"Bar": 0}, | 343| 343| entityLimitChangers: {"Bar": {}}, | 344| 344| researchQueued: new Map(), | 345| 345| researchStarted: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 339| 339| isNeutral: [false, false], | 340| 340| isEnemy: [false, false], | 341| 341| entityLimits: {"Bar": 20}, | 342| |- entityCounts: {"Bar": 0}, | | 342|+ entityCounts: { "Bar": 0}, | 343| 343| entityLimitChangers: {"Bar": {}}, | 344| 344| researchQueued: new Map(), | 345| 345| researchStarted: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 339| 339| isNeutral: [false, false], | 340| 340| isEnemy: [false, false], | 341| 341| entityLimits: {"Bar": 20}, | 342| |- entityCounts: {"Bar": 0}, | | 342|+ entityCounts: {"Bar": 0 }, | 343| 343| entityLimitChangers: {"Bar": {}}, | 344| 344| researchQueued: new Map(), | 345| 345| researchStarted: new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityLimitChangers' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 340| 340| isEnemy: [false, false], | 341| 341| entityLimits: {"Bar": 20}, | 342| 342| entityCounts: {"Bar": 0}, | 343| |- entityLimitChangers: {"Bar": {}}, | | 343|+ "entityLimitChangers": {"Bar": {}}, | 344| 344| researchQueued: new Map(), | 345| 345| researchStarted: new Set(), | 346| 346| researchedTechs: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 340| 340| isEnemy: [false, false], | 341| 341| entityLimits: {"Bar": 20}, | 342| 342| entityCounts: {"Bar": 0}, | 343| |- entityLimitChangers: {"Bar": {}}, | | 343|+ entityLimitChangers: { "Bar": {}}, | 344| 344| researchQueued: new Map(), | 345| 345| researchStarted: new Set(), | 346| 346| researchedTechs: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 340| 340| isEnemy: [false, false], | 341| 341| entityLimits: {"Bar": 20}, | 342| 342| entityCounts: {"Bar": 0}, | 343| |- entityLimitChangers: {"Bar": {}}, | | 343|+ entityLimitChangers: {"Bar": {} }, | 344| 344| researchQueued: new Map(), | 345| 345| researchStarted: new Set(), | 346| 346| researchedTechs: new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchQueued' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 341| 341| entityLimits: {"Bar": 20}, | 342| 342| entityCounts: {"Bar": 0}, | 343| 343| entityLimitChangers: {"Bar": {}}, | 344| |- researchQueued: new Map(), | | 344|+ "researchQueued": new Map(), | 345| 345| researchStarted: new Set(), | 346| 346| researchedTechs: new Set(), | 347| 347| classCounts: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchStarted' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 342| 342| entityCounts: {"Bar": 0}, | 343| 343| entityLimitChangers: {"Bar": {}}, | 344| 344| researchQueued: new Map(), | 345| |- researchStarted: new Set(), | | 345|+ "researchStarted": new Set(), | 346| 346| researchedTechs: new Set(), | 347| 347| classCounts: {}, | 348| 348| typeCountsByClass: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchedTechs' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 343| 343| entityLimitChangers: {"Bar": {}}, | 344| 344| researchQueued: new Map(), | 345| 345| researchStarted: new Set(), | 346| |- researchedTechs: new Set(), | | 346|+ "researchedTechs": new Set(), | 347| 347| classCounts: {}, | 348| 348| typeCountsByClass: {}, | 349| 349| canBarter: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'classCounts' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 344| 344| researchQueued: new Map(), | 345| 345| researchStarted: new Set(), | 346| 346| researchedTechs: new Set(), | 347| |- classCounts: {}, | | 347|+ "classCounts": {}, | 348| 348| typeCountsByClass: {}, | 349| 349| canBarter: false, | 350| 350| barterPrices: { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'typeCountsByClass' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 345| 345| researchStarted: new Set(), | 346| 346| researchedTechs: new Set(), | 347| 347| classCounts: {}, | 348| |- typeCountsByClass: {}, | | 348|+ "typeCountsByClass": {}, | 349| 349| canBarter: false, | 350| 350| barterPrices: { | 351| 351| "buy": { "food": 150 }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'canBarter' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 346| 346| researchedTechs: new Set(), | 347| 347| classCounts: {}, | 348| 348| typeCountsByClass: {}, | 349| |- canBarter: false, | | 349|+ "canBarter": false, | 350| 350| barterPrices: { | 351| 351| "buy": { "food": 150 }, | 352| 352| "sell": { "food": 25 } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'barterPrices' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 347| 347| classCounts: {}, | 348| 348| typeCountsByClass: {}, | 349| 349| canBarter: false, | 350| |- barterPrices: { | | 350|+ "barterPrices": { | 351| 351| "buy": { "food": 150 }, | 352| 352| "sell": { "food": 25 } | 353| 353| }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'statistics' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 351| 351| "buy": { "food": 150 }, | 352| 352| "sell": { "food": 25 } | 353| 353| }, | 354| |- statistics: { | | 354|+ "statistics": { | 355| 355| resourcesGathered: { | 356| 356| food: 100, | 357| 357| wood: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'resourcesGathered' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 352| 352| "sell": { "food": 25 } | 353| 353| }, | 354| 354| statistics: { | 355| |- resourcesGathered: { | | 355|+ "resourcesGathered": { | 356| 356| food: 100, | 357| 357| wood: 0, | 358| 358| metal: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 353| 353| }, | 354| 354| statistics: { | 355| 355| resourcesGathered: { | 356| |- food: 100, | | 356|+ "food": 100, | 357| 357| wood: 0, | 358| 358| metal: 0, | 359| 359| stone: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'wood' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 354| 354| statistics: { | 355| 355| resourcesGathered: { | 356| 356| food: 100, | 357| |- wood: 0, | | 357|+ "wood": 0, | 358| 358| metal: 0, | 359| 359| stone: 0, | 360| 360| vegetarianFood: 0 | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'metal' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 355| 355| resourcesGathered: { | 356| 356| food: 100, | 357| 357| wood: 0, | 358| |- metal: 0, | | 358|+ "metal": 0, | 359| 359| stone: 0, | 360| 360| vegetarianFood: 0 | 361| 361| }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'stone' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 356| 356| food: 100, | 357| 357| wood: 0, | 358| 358| metal: 0, | 359| |- stone: 0, | | 359|+ "stone": 0, | 360| 360| vegetarianFood: 0 | 361| 361| }, | 362| 362| percentMapExplored: 10 | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'vegetarianFood' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 357| 357| wood: 0, | 358| 358| metal: 0, | 359| 359| stone: 0, | 360| |- vegetarianFood: 0 | | 360|+ "vegetarianFood": 0 | 361| 361| }, | 362| 362| percentMapExplored: 10 | 363| 363| } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'percentMapExplored' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 359| 359| stone: 0, | 360| 360| vegetarianFood: 0 | 361| 361| }, | 362| |- percentMapExplored: 10 | | 362|+ "percentMapExplored": 10 | 363| 363| } | 364| 364| } | 365| 365| ], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'circularMap' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 363| 363| } | 364| 364| } | 365| 365| ], | 366| |- circularMap: false, | | 366|+ "circularMap": false, | 367| 367| timeElapsed: 0, | 368| 368| "victoryConditions": ["conquest", "wonder"], | 369| 369| alliedVictory: false | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'timeElapsed' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 364| 364| } | 365| 365| ], | 366| 366| circularMap: false, | 367| |- timeElapsed: 0, | | 367|+ "timeElapsed": 0, | 368| 368| "victoryConditions": ["conquest", "wonder"], | 369| 369| alliedVictory: false | 370| 370| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'alliedVictory' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 366| 366| circularMap: false, | 367| 367| timeElapsed: 0, | 368| 368| "victoryConditions": ["conquest", "wonder"], | 369| |- alliedVictory: false | | 369|+ "alliedVictory": false | 370| 370| }); | 371| 371| | 372| 372| TS_ASSERT_UNEVAL_EQUALS(cmp.GetExtendedSimulationState(), { | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'r'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 374| 374| { | 375| 375| "name": "Player 1", | 376| 376| "civ": "gaia", | 377| |- "color": { "r":1, "g":1, "b":1, "a":1 }, | | 377|+ "color": { "r": 1, "g":1, "b":1, "a":1 }, | 378| 378| "controlsAll": false, | 379| 379| "popCount": 10, | 380| 380| "popLimit": 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'g'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 374| 374| { | 375| 375| "name": "Player 1", | 376| 376| "civ": "gaia", | 377| |- "color": { "r":1, "g":1, "b":1, "a":1 }, | | 377|+ "color": { "r":1, "g": 1, "b":1, "a":1 }, | 378| 378| "controlsAll": false, | 379| 379| "popCount": 10, | 380| 380| "popLimit": 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'b'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 374| 374| { | 375| 375| "name": "Player 1", | 376| 376| "civ": "gaia", | 377| |- "color": { "r":1, "g":1, "b":1, "a":1 }, | | 377|+ "color": { "r":1, "g":1, "b": 1, "a":1 }, | 378| 378| "controlsAll": false, | 379| 379| "popCount": 10, | 380| 380| "popLimit": 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'a'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 374| 374| { | 375| 375| "name": "Player 1", | 376| 376| "civ": "gaia", | 377| |- "color": { "r":1, "g":1, "b":1, "a":1 }, | | 377|+ "color": { "r":1, "g":1, "b":1, "a": 1 }, | 378| 378| "controlsAll": false, | 379| 379| "popCount": 10, | 380| 380| "popLimit": 20, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 396| 396| "isMutualAlly": [false, false], | 397| 397| "isNeutral": [false, false], | 398| 398| "isEnemy": [true, true], | 399| |- "entityLimits": {"Foo": 10}, | | 399|+ "entityLimits": { "Foo": 10}, | 400| 400| "entityCounts": {"Foo": 5}, | 401| 401| "entityLimitChangers": {"Foo": {}}, | 402| 402| "researchQueued": new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 396| 396| "isMutualAlly": [false, false], | 397| 397| "isNeutral": [false, false], | 398| 398| "isEnemy": [true, true], | 399| |- "entityLimits": {"Foo": 10}, | | 399|+ "entityLimits": {"Foo": 10 }, | 400| 400| "entityCounts": {"Foo": 5}, | 401| 401| "entityLimitChangers": {"Foo": {}}, | 402| 402| "researchQueued": new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 397| 397| "isNeutral": [false, false], | 398| 398| "isEnemy": [true, true], | 399| 399| "entityLimits": {"Foo": 10}, | 400| |- "entityCounts": {"Foo": 5}, | | 400|+ "entityCounts": { "Foo": 5}, | 401| 401| "entityLimitChangers": {"Foo": {}}, | 402| 402| "researchQueued": new Map(), | 403| 403| "researchStarted": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 397| 397| "isNeutral": [false, false], | 398| 398| "isEnemy": [true, true], | 399| 399| "entityLimits": {"Foo": 10}, | 400| |- "entityCounts": {"Foo": 5}, | | 400|+ "entityCounts": {"Foo": 5 }, | 401| 401| "entityLimitChangers": {"Foo": {}}, | 402| 402| "researchQueued": new Map(), | 403| 403| "researchStarted": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 398| 398| "isEnemy": [true, true], | 399| 399| "entityLimits": {"Foo": 10}, | 400| 400| "entityCounts": {"Foo": 5}, | 401| |- "entityLimitChangers": {"Foo": {}}, | | 401|+ "entityLimitChangers": { "Foo": {}}, | 402| 402| "researchQueued": new Map(), | 403| 403| "researchStarted": new Set(), | 404| 404| "researchedTechs": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 398| 398| "isEnemy": [true, true], | 399| 399| "entityLimits": {"Foo": 10}, | 400| 400| "entityCounts": {"Foo": 5}, | 401| |- "entityLimitChangers": {"Foo": {}}, | | 401|+ "entityLimitChangers": {"Foo": {} }, | 402| 402| "researchQueued": new Map(), | 403| 403| "researchStarted": new Set(), | 404| 404| "researchedTechs": new Set(), | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'r'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 446| 446| { | 447| 447| "name": "Player 2", | 448| 448| "civ": "mace", | 449| |- "color": { "r":1, "g":0, "b":0, "a":1 }, | | 449|+ "color": { "r": 1, "g":0, "b":0, "a":1 }, | 450| 450| "controlsAll": true, | 451| 451| "popCount": 40, | 452| 452| "popLimit": 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'g'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 446| 446| { | 447| 447| "name": "Player 2", | 448| 448| "civ": "mace", | 449| |- "color": { "r":1, "g":0, "b":0, "a":1 }, | | 449|+ "color": { "r":1, "g": 0, "b":0, "a":1 }, | 450| 450| "controlsAll": true, | 451| 451| "popCount": 40, | 452| 452| "popLimit": 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'b'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 446| 446| { | 447| 447| "name": "Player 2", | 448| 448| "civ": "mace", | 449| |- "color": { "r":1, "g":0, "b":0, "a":1 }, | | 449|+ "color": { "r":1, "g":0, "b": 0, "a":1 }, | 450| 450| "controlsAll": true, | 451| 451| "popCount": 40, | 452| 452| "popLimit": 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'a'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 446| 446| { | 447| 447| "name": "Player 2", | 448| 448| "civ": "mace", | 449| |- "color": { "r":1, "g":0, "b":0, "a":1 }, | | 449|+ "color": { "r":1, "g":0, "b":0, "a": 1 }, | 450| 450| "controlsAll": true, | 451| 451| "popCount": 40, | 452| 452| "popLimit": 30, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 468| 468| "isMutualAlly": [false, false], | 469| 469| "isNeutral": [false, false], | 470| 470| "isEnemy": [false, false], | 471| |- "entityLimits": {"Bar": 20}, | | 471|+ "entityLimits": { "Bar": 20}, | 472| 472| "entityCounts": {"Bar": 0}, | 473| 473| "entityLimitChangers": {"Bar": {}}, | 474| 474| "researchQueued": new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 468| 468| "isMutualAlly": [false, false], | 469| 469| "isNeutral": [false, false], | 470| 470| "isEnemy": [false, false], | 471| |- "entityLimits": {"Bar": 20}, | | 471|+ "entityLimits": {"Bar": 20 }, | 472| 472| "entityCounts": {"Bar": 0}, | 473| 473| "entityLimitChangers": {"Bar": {}}, | 474| 474| "researchQueued": new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 469| 469| "isNeutral": [false, false], | 470| 470| "isEnemy": [false, false], | 471| 471| "entityLimits": {"Bar": 20}, | 472| |- "entityCounts": {"Bar": 0}, | | 472|+ "entityCounts": { "Bar": 0}, | 473| 473| "entityLimitChangers": {"Bar": {}}, | 474| 474| "researchQueued": new Map(), | 475| 475| "researchStarted": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 469| 469| "isNeutral": [false, false], | 470| 470| "isEnemy": [false, false], | 471| 471| "entityLimits": {"Bar": 20}, | 472| |- "entityCounts": {"Bar": 0}, | | 472|+ "entityCounts": {"Bar": 0 }, | 473| 473| "entityLimitChangers": {"Bar": {}}, | 474| 474| "researchQueued": new Map(), | 475| 475| "researchStarted": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 470| 470| "isEnemy": [false, false], | 471| 471| "entityLimits": {"Bar": 20}, | 472| 472| "entityCounts": {"Bar": 0}, | 473| |- "entityLimitChangers": {"Bar": {}}, | | 473|+ "entityLimitChangers": { "Bar": {}}, | 474| 474| "researchQueued": new Map(), | 475| 475| "researchStarted": new Set(), | 476| 476| "researchedTechs": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 470| 470| "isEnemy": [false, false], | 471| 471| "entityLimits": {"Bar": 20}, | 472| 472| "entityCounts": {"Bar": 0}, | 473| |- "entityLimitChangers": {"Bar": {}}, | | 473|+ "entityLimitChangers": {"Bar": {} }, | 474| 474| "researchQueued": new Map(), | 475| 475| "researchStarted": new Set(), | 476| 476| "researchedTechs": new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetEntitiesList' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 524| 524| | 525| 525| | 526| 526| AddMock(10, IID_Builder, { | 527| |- GetEntitiesList: function() { | | 527|+ "GetEntitiesList": function() { | 528| 528| return ["test1", "test2"]; | 529| 529| }, | 530| 530| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetHitpoints' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 530| 530| }); | 531| 531| | 532| 532| AddMock(10, IID_Health, { | 533| |- GetHitpoints: function() { return 50; }, | | 533|+ "GetHitpoints": function() { return 50; }, | 534| 534| GetMaxHitpoints: function() { return 60; }, | 535| 535| IsRepairable: function() { return false; }, | 536| 536| IsUnhealable: function() { return false; } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetMaxHitpoints' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 531| 531| | 532| 532| AddMock(10, IID_Health, { | 533| 533| GetHitpoints: function() { return 50; }, | 534| |- GetMaxHitpoints: function() { return 60; }, | | 534|+ "GetMaxHitpoints": function() { return 60; }, | 535| 535| IsRepairable: function() { return false; }, | 536| 536| IsUnhealable: function() { return false; } | 537| 537| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsRepairable' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 532| 532| AddMock(10, IID_Health, { | 533| 533| GetHitpoints: function() { return 50; }, | 534| 534| GetMaxHitpoints: function() { return 60; }, | 535| |- IsRepairable: function() { return false; }, | | 535|+ "IsRepairable": function() { return false; }, | 536| 536| IsUnhealable: function() { return false; } | 537| 537| }); | 538| 538| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsUnhealable' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 533| 533| GetHitpoints: function() { return 50; }, | 534| 534| GetMaxHitpoints: function() { return 60; }, | 535| 535| IsRepairable: function() { return false; }, | 536| |- IsUnhealable: function() { return false; } | | 536|+ "IsUnhealable": function() { return false; } | 537| 537| }); | 538| 538| | 539| 539| AddMock(10, IID_Identity, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetClassesList' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 537| 537| }); | 538| 538| | 539| 539| AddMock(10, IID_Identity, { | 540| |- GetClassesList: function() { return ["class1", "class2"]; }, | | 540|+ "GetClassesList": function() { return ["class1", "class2"]; }, | 541| 541| GetVisibleClassesList: function() { return ["class3", "class4"]; }, | 542| 542| GetRank: function() { return "foo"; }, | 543| 543| GetSelectionGroupName: function() { return "Selection Group Name"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetVisibleClassesList' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 538| 538| | 539| 539| AddMock(10, IID_Identity, { | 540| 540| GetClassesList: function() { return ["class1", "class2"]; }, | 541| |- GetVisibleClassesList: function() { return ["class3", "class4"]; }, | | 541|+ "GetVisibleClassesList": function() { return ["class3", "class4"]; }, | 542| 542| GetRank: function() { return "foo"; }, | 543| 543| GetSelectionGroupName: function() { return "Selection Group Name"; }, | 544| 544| HasClass: function() { return true; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetRank' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 539| 539| AddMock(10, IID_Identity, { | 540| 540| GetClassesList: function() { return ["class1", "class2"]; }, | 541| 541| GetVisibleClassesList: function() { return ["class3", "class4"]; }, | 542| |- GetRank: function() { return "foo"; }, | | 542|+ "GetRank": function() { return "foo"; }, | 543| 543| GetSelectionGroupName: function() { return "Selection Group Name"; }, | 544| 544| HasClass: function() { return true; }, | 545| 545| IsUndeletable: function() { return false; } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSelectionGroupName' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 540| 540| GetClassesList: function() { return ["class1", "class2"]; }, | 541| 541| GetVisibleClassesList: function() { return ["class3", "class4"]; }, | 542| 542| GetRank: function() { return "foo"; }, | 543| |- GetSelectionGroupName: function() { return "Selection Group Name"; }, | | 543|+ "GetSelectionGroupName": function() { return "Selection Group Name"; }, | 544| 544| HasClass: function() { return true; }, | 545| 545| IsUndeletable: function() { return false; } | 546| 546| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasClass' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 541| 541| GetVisibleClassesList: function() { return ["class3", "class4"]; }, | 542| 542| GetRank: function() { return "foo"; }, | 543| 543| GetSelectionGroupName: function() { return "Selection Group Name"; }, | 544| |- HasClass: function() { return true; }, | | 544|+ "HasClass": function() { return true; }, | 545| 545| IsUndeletable: function() { return false; } | 546| 546| }); | 547| 547| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsUndeletable' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 542| 542| GetRank: function() { return "foo"; }, | 543| 543| GetSelectionGroupName: function() { return "Selection Group Name"; }, | 544| 544| HasClass: function() { return true; }, | 545| |- IsUndeletable: function() { return false; } | | 545|+ "IsUndeletable": function() { return false; } | 546| 546| }); | 547| 547| | 548| 548| AddMock(10, IID_Position, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTurretParent' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 546| 546| }); | 547| 547| | 548| 548| AddMock(10, IID_Position, { | 549| |- GetTurretParent: function() {return INVALID_ENTITY;}, | | 549|+ "GetTurretParent": function() {return INVALID_ENTITY;}, | 550| 550| GetPosition: function() { | 551| 551| return {x:1, y:2, z:3}; | 552| 552| }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPosition' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 547| 547| | 548| 548| AddMock(10, IID_Position, { | 549| 549| GetTurretParent: function() {return INVALID_ENTITY;}, | 550| |- GetPosition: function() { | | 550|+ "GetPosition": function() { | 551| 551| return {x:1, y:2, z:3}; | 552| 552| }, | 553| 553| IsInWorld: function() { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 548| 548| AddMock(10, IID_Position, { | 549| 549| GetTurretParent: function() {return INVALID_ENTITY;}, | 550| 550| GetPosition: function() { | 551| |- return {x:1, y:2, z:3}; | | 551|+ return { x:1, y:2, z:3}; | 552| 552| }, | 553| 553| IsInWorld: function() { | 554| 554| return true; | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'x' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 548| 548| AddMock(10, IID_Position, { | 549| 549| GetTurretParent: function() {return INVALID_ENTITY;}, | 550| 550| GetPosition: function() { | 551| |- return {x:1, y:2, z:3}; | | 551|+ return {"x":1, y:2, z:3}; | 552| 552| }, | 553| 553| IsInWorld: function() { | 554| 554| return true; | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'x'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 548| 548| AddMock(10, IID_Position, { | 549| 549| GetTurretParent: function() {return INVALID_ENTITY;}, | 550| 550| GetPosition: function() { | 551| |- return {x:1, y:2, z:3}; | | 551|+ return {x: 1, y:2, z:3}; | 552| 552| }, | 553| 553| IsInWorld: function() { | 554| 554| return true; | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'y' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 548| 548| AddMock(10, IID_Position, { | 549| 549| GetTurretParent: function() {return INVALID_ENTITY;}, | 550| 550| GetPosition: function() { | 551| |- return {x:1, y:2, z:3}; | | 551|+ return {x:1, "y":2, z:3}; | 552| 552| }, | 553| 553| IsInWorld: function() { | 554| 554| return true; | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'y'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 548| 548| AddMock(10, IID_Position, { | 549| 549| GetTurretParent: function() {return INVALID_ENTITY;}, | 550| 550| GetPosition: function() { | 551| |- return {x:1, y:2, z:3}; | | 551|+ return {x:1, y: 2, z:3}; | 552| 552| }, | 553| 553| IsInWorld: function() { | 554| 554| return true; | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'z' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 548| 548| AddMock(10, IID_Position, { | 549| 549| GetTurretParent: function() {return INVALID_ENTITY;}, | 550| 550| GetPosition: function() { | 551| |- return {x:1, y:2, z:3}; | | 551|+ return {x:1, y:2, "z":3}; | 552| 552| }, | 553| 553| IsInWorld: function() { | 554| 554| return true; | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'z'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 548| 548| AddMock(10, IID_Position, { | 549| 549| GetTurretParent: function() {return INVALID_ENTITY;}, | 550| 550| GetPosition: function() { | 551| |- return {x:1, y:2, z:3}; | | 551|+ return {x:1, y:2, z: 3}; | 552| 552| }, | 553| 553| IsInWorld: function() { | 554| 554| return true; | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 548| 548| AddMock(10, IID_Position, { | 549| 549| GetTurretParent: function() {return INVALID_ENTITY;}, | 550| 550| GetPosition: function() { | 551| |- return {x:1, y:2, z:3}; | | 551|+ return {x:1, y:2, z:3 }; | 552| 552| }, | 553| 553| IsInWorld: function() { | 554| 554| return true; | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsInWorld' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 550| 550| GetPosition: function() { | 551| 551| return {x:1, y:2, z:3}; | 552| 552| }, | 553| |- IsInWorld: function() { | | 553|+ "IsInWorld": function() { | 554| 554| return true; | 555| 555| } | 556| 556| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 574| 574| "selectionGroupName": "Selection Group Name", | 575| 575| "canDelete": true | 576| 576| }, | 577| |- "position": {x:1, y:2, z:3}, | | 577|+ "position": { x:1, y:2, z:3}, | 578| 578| "hitpoints": 50, | 579| 579| "maxHitpoints": 60, | 580| 580| "needsRepair": false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'x' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 574| 574| "selectionGroupName": "Selection Group Name", | 575| 575| "canDelete": true | 576| 576| }, | 577| |- "position": {x:1, y:2, z:3}, | | 577|+ "position": {"x":1, y:2, z:3}, | 578| 578| "hitpoints": 50, | 579| 579| "maxHitpoints": 60, | 580| 580| "needsRepair": false, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'x'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 574| 574| "selectionGroupName": "Selection Group Name", | 575| 575| "canDelete": true | 576| 576| }, | 577| |- "position": {x:1, y:2, z:3}, | | 577|+ "position": {x: 1, y:2, z:3}, | 578| 578| "hitpoints": 50, | 579| 579| "maxHitpoints": 60, | 580| 580| "needsRepair": false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'y' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 574| 574| "selectionGroupName": "Selection Group Name", | 575| 575| "canDelete": true | 576| 576| }, | 577| |- "position": {x:1, y:2, z:3}, | | 577|+ "position": {x:1, "y":2, z:3}, | 578| 578| "hitpoints": 50, | 579| 579| "maxHitpoints": 60, | 580| 580| "needsRepair": false, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'y'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 574| 574| "selectionGroupName": "Selection Group Name", | 575| 575| "canDelete": true | 576| 576| }, | 577| |- "position": {x:1, y:2, z:3}, | | 577|+ "position": {x:1, y: 2, z:3}, | 578| 578| "hitpoints": 50, | 579| 579| "maxHitpoints": 60, | 580| 580| "needsRepair": false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'z' found. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 574| 574| "selectionGroupName": "Selection Group Name", | 575| 575| "canDelete": true | 576| 576| }, | 577| |- "position": {x:1, y:2, z:3}, | | 577|+ "position": {x:1, y:2, "z":3}, | 578| 578| "hitpoints": 50, | 579| 579| "maxHitpoints": 60, | 580| 580| "needsRepair": false, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'z'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 574| 574| "selectionGroupName": "Selection Group Name", | 575| 575| "canDelete": true | 576| 576| }, | 577| |- "position": {x:1, y:2, z:3}, | | 577|+ "position": {x:1, y:2, z: 3}, | 578| 578| "hitpoints": 50, | 579| 579| "maxHitpoints": 60, | 580| 580| "needsRepair": false, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 574| 574| "selectionGroupName": "Selection Group Name", | 575| 575| "canDelete": true | 576| 576| }, | 577| |- "position": {x:1, y:2, z:3}, | | 577|+ "position": {x:1, y:2, z:3 }, | 578| 578| "hitpoints": 50, | 579| 579| "maxHitpoints": 60, | 580| 580| "needsRepair": false, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'isBarterMarket'. |----| | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 581| 581| "needsHeal": true, | 582| 582| "builder": true, | 583| 583| "visibility": "visible", | 584| |- "isBarterMarket":true, | | 584|+ "isBarterMarket": true, | 585| 585| "resourceTrickle": { | 586| 586| "interval": 1250, | 587| 587| "rates": { "food": 2, "wood": 3, "stone": 5, "metal": 9 } Executing section cli... Link to build: https://jenkins.wildfiregames.com/job/differential/1953/display/redirect
Comment Actions Successful build - Chance fights ever on the side of the prudent. Link to build: https://jenkins.wildfiregames.com/job/docker-differential/19/display/redirect Comment Actions Successful build - Chance fights ever on the side of the prudent. Link to build: https://jenkins.wildfiregames.com/job/docker-differential/20/display/redirect Comment Actions Apparently I'm doing something wrong then. I gave cavalry a garrisonable size of 3, but it doesn't show up in the techtree: nor in the in-game extended tooltip (opened when clicking on icon): Comment Actions tooltip in game takes information from guiinterface entity state, tooltip in tech tree, structure tree, encyclopedia takes information from template itself not from cmpGarrisonHolder. Comment Actions it displays chosen tooltip and formulate it based on data it gets. It does not gets data by itslef, data are given to it. Comment Actions @Nescio Engine.GetGUIObjectByName("attackAndArmorStats").tooltip = [ getAttackTooltip, getSplashDamageTooltip, getHealerTooltip, getArmorTooltip, getGatherTooltip, getSpeedTooltip, getGarrisonTooltip, getProjectilesTooltip, getConsumerTooltip, getPayedTooltip, getResourceTrickleTooltip, getLootTooltip ].map(func => func(entState)).filter(tip => tip).join("\n"); vs let template = GetTemplateData(data.item); let tooltips = [ getEntityNamesFormatted, getVisibleEntityClassesFormatted, getAurasTooltip, getEntityTooltip, getEntityCostTooltip, getGarrisonTooltip, getPopulationBonusTooltip, showTemplateViewerOnRightClickTooltip ].map(func => func(template)); Comment Actions So selection_details.js corresponds to the in-game tooltip and selection_panels.js to the structure tree tooltip? Comment Actions selection details that part i posted is when you hover over that sword and shield when selected entity, it takes data from entity state so uses cmpGarrisonHolder selection panels is when you hover over unit to train, building to build but same mechanic as structure tree , they take info from templates, as that entity does not exists, so using this.template.Something.something yes they use the same function to display data but data are not the same Comment Actions Build failure - The Moirai have given mortals hearts that can endure. Link to build: https://jenkins.wildfiregames.com/job/docker-differential/195/display/redirect Comment Actions Now suppose I want to display a new stat (e.g. garrisonable size) in all tooltips everywhere, what do I need to do then? It does show up when hovering over the swprd-and-shield icon: (the + is ugly, though).[EDIT] Didn't see patch is updated, will try again, thanks. Comment Actions Thanks, it works! Comment Actions Aye. And of course define it in the tooltip. And make sure that tooltip is called upon. But that information you knew already/know now, based on the above discussion ;) Comment Actions Also do not forget \public\gui\reference\viewer\viewer.js for right click window (encyclopedia or whatever is it name) Comment Actions Looking at https://trac.wildfiregames.com/wiki/Civ%3A_Carthaginians it seems this feature was originally wanted (that design document page says “Garrison: 1” for infantry, “Garrison: 2” for cavalry, “Garrison: 3” for elephant and ballista). There might be a trac ticket somewhere. Comment Actions Also show the garrison size when hovering over the shield in multiple selection mode (where it shows the # of units). Comment Actions Successful build - Chance fights ever on the side of the prudent. Linter detected issues: Executing section Source... Executing section JS... binaries/data/mods/public/simulation/ai/petra/garrisonManager.js | 382| }(PETRA); | | [MAJOR] ESLintBear (no-use-before-define): | | 'PETRA' was used before it was defined. | | [NORMAL] ESLintBear (operator-linebreak): | | '||' should be placed at the end of the line. |----| | /zpool0/trunk/binaries/data/mods/public/globalscripts/Templates.js | |++++| /zpool0/trunk/binaries/data/mods/public/globalscripts/Templates.js | 87| 87| // If the elements are still strings, split them by space or by '+' | 88| 88| if (typeof sublist == "string") | 89| 89| sublist = sublist.split(/[+\s]+/); | 90| |- if (sublist.every(c => (c[0] == "!" && classes.indexOf(c.substr(1)) == -1) | 91| |- || (c[0] != "!" && classes.indexOf(c) != -1))) | | 90|+ if (sublist.every(c => (c[0] == "!" && classes.indexOf(c.substr(1)) == -1) || | | 91|+ (c[0] != "!" && classes.indexOf(c) != -1))) | 92| 92| return true; | 93| 93| } | 94| 94| binaries/data/mods/public/globalscripts/Templates.js | 91| » » ····················||·(c[0]·!=·"!"·&&·classes.indexOf(c)·!=·-1))) | | [NORMAL] JSHintBear: | | Misleading line break before '||'; readers may interpret this as an expression boundary. binaries/data/mods/public/simulation/ai/petra/defenseManager.js | 957| }(PETRA); | | [MAJOR] ESLintBear (no-use-before-define): | | 'PETRA' was used before it was defined. | | [NORMAL] ESLintBear (no-trailing-spaces): | | Trailing spaces not allowed. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/ai/petra/headquarters.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/ai/petra/headquarters.js |1092|1092| val += gameState.sharedScript.ccResourceMaps[res].map[j]; |1093|1093| val *= norm; |1094|1094| |1095| |- // If oversea, be just above threshold to be accepted if nothing else | |1095|+ // If oversea, be just above threshold to be accepted if nothing else |1096|1096| if (oversea) |1097|1097| val = Math.max(val, cut + 0.1); |1098|1098| | | [NORMAL] ESLintBear (indent): | | Expected indentation of 1 tab but found 0. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/ai/petra/headquarters.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/ai/petra/headquarters.js |2683|2683| this.phasing = 0; |2684|2684| } |2685|2685| |2686| |-/* if (this.Config.debug > 1) | |2686|+ /* if (this.Config.debug > 1) |2687|2687| { |2688|2688| gameState.getOwnUnits().forEach (function (ent) { |2689|2689| if (!ent.position()) | | [NORMAL] ESLintBear (indent): | | Expected indentation of 2 tabs but found 0. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/ai/petra/headquarters.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/ai/petra/headquarters.js |2758|2758| this.currentBase %= this.baseManagers.length; |2759|2759| activeBase = this.baseManagers[this.currentBase++].update(gameState, queues, events); |2760|2760| --nbBases; |2761| |-// TODO what to do with this.reassignTerritories(this.baseManagers[this.currentBase]); | |2761|+ // TODO what to do with this.reassignTerritories(this.baseManagers[this.currentBase]); |2762|2762| } |2763|2763| while (!activeBase && nbBases != 0); |2764|2764| binaries/data/mods/public/simulation/ai/petra/headquarters.js |2896| }(PETRA); | | [MAJOR] ESLintBear (no-use-before-define): | | 'PETRA' was used before it was defined. binaries/data/mods/public/simulation/ai/common-api/entity.js | 814| » » if·(this.position()·!==·undefined)·{ | | [NORMAL] ESLintBear (brace-rules/brace-on-same-line): | | Opening curly brace appears on the same line as controlling statement. binaries/data/mods/public/simulation/ai/common-api/entity.js | 831| » » if·(this.position()·!==·undefined·&&·unitToFleeFrom.position()·!==·undefined)·{ | | [NORMAL] ESLintBear (brace-rules/brace-on-same-line): | | Opening curly brace appears on the same line as controlling statement. binaries/data/mods/public/simulation/ai/common-api/entity.js | 961| }(API3); | | [MAJOR] ESLintBear (no-use-before-define): | | 'API3' was used before it was defined. | | [NORMAL] ESLintBear (indent): | | Expected indentation of 3 tabs but found 4. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | 76| 76| | 77| 77| if (i == 35) | 78| 78| AddMock(i, IID_Garrisonable, { | 79| |- "GetSize": () => 9 | | 79|+ "GetSize": () => 9 | 80| 80| }); | 81| 81| else | 82| 82| AddMock(i, IID_Garrisonable, { | | [NORMAL] ESLintBear (indent): | | Expected indentation of 2 tabs but found 3. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | 77| 77| if (i == 35) | 78| 78| AddMock(i, IID_Garrisonable, { | 79| 79| "GetSize": () => 9 | 80| |- }); | | 80|+ }); | 81| 81| else | 82| 82| AddMock(i, IID_Garrisonable, { | 83| 83| "GetSize": () => 1 | | [NORMAL] ESLintBear (indent): | | Expected indentation of 3 tabs but found 4. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | 80| 80| }); | 81| 81| else | 82| 82| AddMock(i, IID_Garrisonable, { | 83| |- "GetSize": () => 1 | | 83|+ "GetSize": () => 1 | 84| 84| }); | 85| 85| | 86| 86| AddMock(i, IID_Position, { | | [NORMAL] ESLintBear (indent): | | Expected indentation of 2 tabs but found 3. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | 81| 81| else | 82| 82| AddMock(i, IID_Garrisonable, { | 83| 83| "GetSize": () => 1 | 84| |- }); | | 84|+ }); | 85| 85| | 86| 86| AddMock(i, IID_Position, { | 87| 87| "GetHeightOffset": () => 0, | | [NORMAL] ESLintBear (indent): | | Expected indentation of 4 tabs but found 3. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 47| 47| "GetResource": resource => ({ | 48| 48| "aiAnalysisInfluenceGroup": | 49| 49| resource == "food" ? "ignore" : | 50| |- resource == "wood" ? "abundant" : "sparse" | | 50|+ resource == "wood" ? "abundant" : "sparse" | 51| 51| }) | 52| 52| }; | 53| 53| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPrices' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 55| 55| | 56| 56| | 57| 57| AddMock(SYSTEM_ENTITY, IID_Barter, { | 58| |- GetPrices: function() { | | 58|+ "GetPrices": function() { | 59| 59| return { | 60| 60| "buy": { "food": 150 }, | 61| 61| "sell": { "food": 25 } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'PlayerHasMarket' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 61| 61| "sell": { "food": 25 } | 62| 62| }; | 63| 63| }, | 64| |- PlayerHasMarket: function () { return false; } | | 64|+ "PlayerHasMarket": function () { return false; } | 65| 65| }); | 66| 66| | 67| 67| AddMock(SYSTEM_ENTITY, IID_EndGameManager, { | | [NORMAL] ESLintBear (space-before-function-paren): | | Unexpected space before function parentheses. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 61| 61| "sell": { "food": 25 } | 62| 62| }; | 63| 63| }, | 64| |- PlayerHasMarket: function () { return false; } | | 64|+ PlayerHasMarket: function() { return false; } | 65| 65| }); | 66| 66| | 67| 67| AddMock(SYSTEM_ENTITY, IID_EndGameManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetVictoryConditions' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 65| 65| }); | 66| 66| | 67| 67| AddMock(SYSTEM_ENTITY, IID_EndGameManager, { | 68| |- GetVictoryConditions: () => ["conquest", "wonder"], | | 68|+ "GetVictoryConditions": () => ["conquest", "wonder"], | 69| 69| GetAlliedVictory: function() { return false; } | 70| 70| }); | 71| 71| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetAlliedVictory' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 66| 66| | 67| 67| AddMock(SYSTEM_ENTITY, IID_EndGameManager, { | 68| 68| GetVictoryConditions: () => ["conquest", "wonder"], | 69| |- GetAlliedVictory: function() { return false; } | | 69|+ "GetAlliedVictory": function() { return false; } | 70| 70| }); | 71| 71| | 72| 72| AddMock(SYSTEM_ENTITY, IID_PlayerManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetNumPlayers' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 70| 70| }); | 71| 71| | 72| 72| AddMock(SYSTEM_ENTITY, IID_PlayerManager, { | 73| |- GetNumPlayers: function() { return 2; }, | | 73|+ "GetNumPlayers": function() { return 2; }, | 74| 74| GetPlayerByID: function(id) { TS_ASSERT(id === 0 || id === 1); return 100+id; } | 75| 75| }); | 76| 76| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPlayerByID' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 71| 71| | 72| 72| AddMock(SYSTEM_ENTITY, IID_PlayerManager, { | 73| 73| GetNumPlayers: function() { return 2; }, | 74| |- GetPlayerByID: function(id) { TS_ASSERT(id === 0 || id === 1); return 100+id; } | | 74|+ "GetPlayerByID": function(id) { TS_ASSERT(id === 0 || id === 1); return 100+id; } | 75| 75| }); | 76| 76| | 77| 77| AddMock(SYSTEM_ENTITY, IID_RangeManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLosVisibility' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 75| 75| }); | 76| 76| | 77| 77| AddMock(SYSTEM_ENTITY, IID_RangeManager, { | 78| |- GetLosVisibility: function(ent, player) { return "visible"; }, | | 78|+ "GetLosVisibility": function(ent, player) { return "visible"; }, | 79| 79| GetLosCircular: function() { return false; } | 80| 80| }); | 81| 81| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLosCircular' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 76| 76| | 77| 77| AddMock(SYSTEM_ENTITY, IID_RangeManager, { | 78| 78| GetLosVisibility: function(ent, player) { return "visible"; }, | 79| |- GetLosCircular: function() { return false; } | | 79|+ "GetLosCircular": function() { return false; } | 80| 80| }); | 81| 81| | 82| 82| AddMock(SYSTEM_ENTITY, IID_TemplateManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCurrentTemplateName' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 80| 80| }); | 81| 81| | 82| 82| AddMock(SYSTEM_ENTITY, IID_TemplateManager, { | 83| |- GetCurrentTemplateName: function(ent) { return "example"; }, | | 83|+ "GetCurrentTemplateName": function(ent) { return "example"; }, | 84| 84| GetTemplate: function(name) { return ""; } | 85| 85| }); | 86| 86| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTemplate' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 81| 81| | 82| 82| AddMock(SYSTEM_ENTITY, IID_TemplateManager, { | 83| 83| GetCurrentTemplateName: function(ent) { return "example"; }, | 84| |- GetTemplate: function(name) { return ""; } | | 84|+ "GetTemplate": function(name) { return ""; } | 85| 85| }); | 86| 86| | 87| 87| AddMock(SYSTEM_ENTITY, IID_Timer, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTime' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 85| 85| }); | 86| 86| | 87| 87| AddMock(SYSTEM_ENTITY, IID_Timer, { | 88| |- GetTime: function() { return 0; }, | | 88|+ "GetTime": function() { return 0; }, | 89| 89| SetTimeout: function(ent, iid, funcname, time, data) { return 0; } | 90| 90| }); | 91| 91| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'SetTimeout' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 86| 86| | 87| 87| AddMock(SYSTEM_ENTITY, IID_Timer, { | 88| 88| GetTime: function() { return 0; }, | 89| |- SetTimeout: function(ent, iid, funcname, time, data) { return 0; } | | 89|+ "SetTimeout": function(ent, iid, funcname, time, data) { return 0; } | 90| 90| }); | 91| 91| | 92| 92| AddMock(100, IID_Player, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetName' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 90| 90| }); | 91| 91| | 92| 92| AddMock(100, IID_Player, { | 93| |- GetName: function() { return "Player 1"; }, | | 93|+ "GetName": function() { return "Player 1"; }, | 94| 94| GetCiv: function() { return "gaia"; }, | 95| 95| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 96| 96| CanControlAllUnits: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCiv' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 91| 91| | 92| 92| AddMock(100, IID_Player, { | 93| 93| GetName: function() { return "Player 1"; }, | 94| |- GetCiv: function() { return "gaia"; }, | | 94|+ "GetCiv": function() { return "gaia"; }, | 95| 95| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 96| 96| CanControlAllUnits: function() { return false; }, | 97| 97| GetPopulationCount: function() { return 10; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetColor' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 92| 92| AddMock(100, IID_Player, { | 93| 93| GetName: function() { return "Player 1"; }, | 94| 94| GetCiv: function() { return "gaia"; }, | 95| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 95|+ "GetColor": function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 96| 96| CanControlAllUnits: function() { return false; }, | 97| 97| GetPopulationCount: function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'r' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 92| 92| AddMock(100, IID_Player, { | 93| 93| GetName: function() { return "Player 1"; }, | 94| 94| GetCiv: function() { return "gaia"; }, | 95| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 95|+ GetColor: function() { return { "r": 1, g: 1, b: 1, a: 1}; }, | 96| 96| CanControlAllUnits: function() { return false; }, | 97| 97| GetPopulationCount: function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'g' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 92| 92| AddMock(100, IID_Player, { | 93| 93| GetName: function() { return "Player 1"; }, | 94| 94| GetCiv: function() { return "gaia"; }, | 95| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 95|+ GetColor: function() { return { r: 1, "g": 1, b: 1, a: 1}; }, | 96| 96| CanControlAllUnits: function() { return false; }, | 97| 97| GetPopulationCount: function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'b' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 92| 92| AddMock(100, IID_Player, { | 93| 93| GetName: function() { return "Player 1"; }, | 94| 94| GetCiv: function() { return "gaia"; }, | 95| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 95|+ GetColor: function() { return { r: 1, g: 1, "b": 1, a: 1}; }, | 96| 96| CanControlAllUnits: function() { return false; }, | 97| 97| GetPopulationCount: function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'a' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 92| 92| AddMock(100, IID_Player, { | 93| 93| GetName: function() { return "Player 1"; }, | 94| 94| GetCiv: function() { return "gaia"; }, | 95| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 95|+ GetColor: function() { return { r: 1, g: 1, b: 1, "a": 1}; }, | 96| 96| CanControlAllUnits: function() { return false; }, | 97| 97| GetPopulationCount: function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 92| 92| AddMock(100, IID_Player, { | 93| 93| GetName: function() { return "Player 1"; }, | 94| 94| GetCiv: function() { return "gaia"; }, | 95| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 95|+ GetColor: function() { return { r: 1, g: 1, b: 1, a: 1 }; }, | 96| 96| CanControlAllUnits: function() { return false; }, | 97| 97| GetPopulationCount: function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'CanControlAllUnits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 93| 93| GetName: function() { return "Player 1"; }, | 94| 94| GetCiv: function() { return "gaia"; }, | 95| 95| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 96| |- CanControlAllUnits: function() { return false; }, | | 96|+ "CanControlAllUnits": function() { return false; }, | 97| 97| GetPopulationCount: function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | 99| 99| GetMaxPopulation: function() { return 200; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPopulationCount' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 94| 94| GetCiv: function() { return "gaia"; }, | 95| 95| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 96| 96| CanControlAllUnits: function() { return false; }, | 97| |- GetPopulationCount: function() { return 10; }, | | 97|+ "GetPopulationCount": function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | 99| 99| GetMaxPopulation: function() { return 200; }, | 100| 100| GetResourceCounts: function() { return { food: 100 }; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPopulationLimit' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 95| 95| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 96| 96| CanControlAllUnits: function() { return false; }, | 97| 97| GetPopulationCount: function() { return 10; }, | 98| |- GetPopulationLimit: function() { return 20; }, | | 98|+ "GetPopulationLimit": function() { return 20; }, | 99| 99| GetMaxPopulation: function() { return 200; }, | 100| 100| GetResourceCounts: function() { return { food: 100 }; }, | 101| 101| GetPanelEntities: function() { return []; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetMaxPopulation' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 96| 96| CanControlAllUnits: function() { return false; }, | 97| 97| GetPopulationCount: function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | 99| |- GetMaxPopulation: function() { return 200; }, | | 99|+ "GetMaxPopulation": function() { return 200; }, | 100| 100| GetResourceCounts: function() { return { food: 100 }; }, | 101| 101| GetPanelEntities: function() { return []; }, | 102| 102| IsTrainingBlocked: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetResourceCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 97| 97| GetPopulationCount: function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | 99| 99| GetMaxPopulation: function() { return 200; }, | 100| |- GetResourceCounts: function() { return { food: 100 }; }, | | 100|+ "GetResourceCounts": function() { return { food: 100 }; }, | 101| 101| GetPanelEntities: function() { return []; }, | 102| 102| IsTrainingBlocked: function() { return false; }, | 103| 103| GetState: function() { return "active"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 97| 97| GetPopulationCount: function() { return 10; }, | 98| 98| GetPopulationLimit: function() { return 20; }, | 99| 99| GetMaxPopulation: function() { return 200; }, | 100| |- GetResourceCounts: function() { return { food: 100 }; }, | | 100|+ GetResourceCounts: function() { return { "food": 100 }; }, | 101| 101| GetPanelEntities: function() { return []; }, | 102| 102| IsTrainingBlocked: function() { return false; }, | 103| 103| GetState: function() { return "active"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPanelEntities' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 98| 98| GetPopulationLimit: function() { return 20; }, | 99| 99| GetMaxPopulation: function() { return 200; }, | 100| 100| GetResourceCounts: function() { return { food: 100 }; }, | 101| |- GetPanelEntities: function() { return []; }, | | 101|+ "GetPanelEntities": function() { return []; }, | 102| 102| IsTrainingBlocked: function() { return false; }, | 103| 103| GetState: function() { return "active"; }, | 104| 104| GetTeam: function() { return -1; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsTrainingBlocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 99| 99| GetMaxPopulation: function() { return 200; }, | 100| 100| GetResourceCounts: function() { return { food: 100 }; }, | 101| 101| GetPanelEntities: function() { return []; }, | 102| |- IsTrainingBlocked: function() { return false; }, | | 102|+ "IsTrainingBlocked": function() { return false; }, | 103| 103| GetState: function() { return "active"; }, | 104| 104| GetTeam: function() { return -1; }, | 105| 105| GetLockTeams: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetState' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 100| 100| GetResourceCounts: function() { return { food: 100 }; }, | 101| 101| GetPanelEntities: function() { return []; }, | 102| 102| IsTrainingBlocked: function() { return false; }, | 103| |- GetState: function() { return "active"; }, | | 103|+ "GetState": function() { return "active"; }, | 104| 104| GetTeam: function() { return -1; }, | 105| 105| GetLockTeams: function() { return false; }, | 106| 106| GetCheatsEnabled: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTeam' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 101| 101| GetPanelEntities: function() { return []; }, | 102| 102| IsTrainingBlocked: function() { return false; }, | 103| 103| GetState: function() { return "active"; }, | 104| |- GetTeam: function() { return -1; }, | | 104|+ "GetTeam": function() { return -1; }, | 105| 105| GetLockTeams: function() { return false; }, | 106| 106| GetCheatsEnabled: function() { return false; }, | 107| 107| GetDiplomacy: function() { return [-1, 1]; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLockTeams' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 102| 102| IsTrainingBlocked: function() { return false; }, | 103| 103| GetState: function() { return "active"; }, | 104| 104| GetTeam: function() { return -1; }, | 105| |- GetLockTeams: function() { return false; }, | | 105|+ "GetLockTeams": function() { return false; }, | 106| 106| GetCheatsEnabled: function() { return false; }, | 107| 107| GetDiplomacy: function() { return [-1, 1]; }, | 108| 108| IsAlly: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCheatsEnabled' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 103| 103| GetState: function() { return "active"; }, | 104| 104| GetTeam: function() { return -1; }, | 105| 105| GetLockTeams: function() { return false; }, | 106| |- GetCheatsEnabled: function() { return false; }, | | 106|+ "GetCheatsEnabled": function() { return false; }, | 107| 107| GetDiplomacy: function() { return [-1, 1]; }, | 108| 108| IsAlly: function() { return false; }, | 109| 109| IsMutualAlly: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDiplomacy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 104| 104| GetTeam: function() { return -1; }, | 105| 105| GetLockTeams: function() { return false; }, | 106| 106| GetCheatsEnabled: function() { return false; }, | 107| |- GetDiplomacy: function() { return [-1, 1]; }, | | 107|+ "GetDiplomacy": function() { return [-1, 1]; }, | 108| 108| IsAlly: function() { return false; }, | 109| 109| IsMutualAlly: function() { return false; }, | 110| 110| IsNeutral: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 105| 105| GetLockTeams: function() { return false; }, | 106| 106| GetCheatsEnabled: function() { return false; }, | 107| 107| GetDiplomacy: function() { return [-1, 1]; }, | 108| |- IsAlly: function() { return false; }, | | 108|+ "IsAlly": function() { return false; }, | 109| 109| IsMutualAlly: function() { return false; }, | 110| 110| IsNeutral: function() { return false; }, | 111| 111| IsEnemy: function() { return true; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsMutualAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 106| 106| GetCheatsEnabled: function() { return false; }, | 107| 107| GetDiplomacy: function() { return [-1, 1]; }, | 108| 108| IsAlly: function() { return false; }, | 109| |- IsMutualAlly: function() { return false; }, | | 109|+ "IsMutualAlly": function() { return false; }, | 110| 110| IsNeutral: function() { return false; }, | 111| 111| IsEnemy: function() { return true; }, | 112| 112| GetDisabledTemplates: function() { return {}; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsNeutral' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 107| 107| GetDiplomacy: function() { return [-1, 1]; }, | 108| 108| IsAlly: function() { return false; }, | 109| 109| IsMutualAlly: function() { return false; }, | 110| |- IsNeutral: function() { return false; }, | | 110|+ "IsNeutral": function() { return false; }, | 111| 111| IsEnemy: function() { return true; }, | 112| 112| GetDisabledTemplates: function() { return {}; }, | 113| 113| GetDisabledTechnologies: function() { return {}; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsEnemy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 108| 108| IsAlly: function() { return false; }, | 109| 109| IsMutualAlly: function() { return false; }, | 110| 110| IsNeutral: function() { return false; }, | 111| |- IsEnemy: function() { return true; }, | | 111|+ "IsEnemy": function() { return true; }, | 112| 112| GetDisabledTemplates: function() { return {}; }, | 113| 113| GetDisabledTechnologies: function() { return {}; }, | 114| 114| GetSpyCostMultiplier: function() { return 1; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDisabledTemplates' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 109| 109| IsMutualAlly: function() { return false; }, | 110| 110| IsNeutral: function() { return false; }, | 111| 111| IsEnemy: function() { return true; }, | 112| |- GetDisabledTemplates: function() { return {}; }, | | 112|+ "GetDisabledTemplates": function() { return {}; }, | 113| 113| GetDisabledTechnologies: function() { return {}; }, | 114| 114| GetSpyCostMultiplier: function() { return 1; }, | 115| 115| HasSharedDropsites: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDisabledTechnologies' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 110| 110| IsNeutral: function() { return false; }, | 111| 111| IsEnemy: function() { return true; }, | 112| 112| GetDisabledTemplates: function() { return {}; }, | 113| |- GetDisabledTechnologies: function() { return {}; }, | | 113|+ "GetDisabledTechnologies": function() { return {}; }, | 114| 114| GetSpyCostMultiplier: function() { return 1; }, | 115| 115| HasSharedDropsites: function() { return false; }, | 116| 116| HasSharedLos: function() { return false; } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSpyCostMultiplier' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 111| 111| IsEnemy: function() { return true; }, | 112| 112| GetDisabledTemplates: function() { return {}; }, | 113| 113| GetDisabledTechnologies: function() { return {}; }, | 114| |- GetSpyCostMultiplier: function() { return 1; }, | | 114|+ "GetSpyCostMultiplier": function() { return 1; }, | 115| 115| HasSharedDropsites: function() { return false; }, | 116| 116| HasSharedLos: function() { return false; } | 117| 117| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasSharedDropsites' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 112| 112| GetDisabledTemplates: function() { return {}; }, | 113| 113| GetDisabledTechnologies: function() { return {}; }, | 114| 114| GetSpyCostMultiplier: function() { return 1; }, | 115| |- HasSharedDropsites: function() { return false; }, | | 115|+ "HasSharedDropsites": function() { return false; }, | 116| 116| HasSharedLos: function() { return false; } | 117| 117| }); | 118| 118| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasSharedLos' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 113| 113| GetDisabledTechnologies: function() { return {}; }, | 114| 114| GetSpyCostMultiplier: function() { return 1; }, | 115| 115| HasSharedDropsites: function() { return false; }, | 116| |- HasSharedLos: function() { return false; } | | 116|+ "HasSharedLos": function() { return false; } | 117| 117| }); | 118| 118| | 119| 119| AddMock(100, IID_EntityLimits, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLimits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 117| 117| }); | 118| 118| | 119| 119| AddMock(100, IID_EntityLimits, { | 120| |- GetLimits: function() { return {"Foo": 10}; }, | | 120|+ "GetLimits": function() { return {"Foo": 10}; }, | 121| 121| GetCounts: function() { return {"Foo": 5}; }, | 122| 122| GetLimitChangers: function() {return {"Foo": {}}; } | 123| 123| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 117| 117| }); | 118| 118| | 119| 119| AddMock(100, IID_EntityLimits, { | 120| |- GetLimits: function() { return {"Foo": 10}; }, | | 120|+ GetLimits: function() { return { "Foo": 10}; }, | 121| 121| GetCounts: function() { return {"Foo": 5}; }, | 122| 122| GetLimitChangers: function() {return {"Foo": {}}; } | 123| 123| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 117| 117| }); | 118| 118| | 119| 119| AddMock(100, IID_EntityLimits, { | 120| |- GetLimits: function() { return {"Foo": 10}; }, | | 120|+ GetLimits: function() { return {"Foo": 10 }; }, | 121| 121| GetCounts: function() { return {"Foo": 5}; }, | 122| 122| GetLimitChangers: function() {return {"Foo": {}}; } | 123| 123| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 118| 118| | 119| 119| AddMock(100, IID_EntityLimits, { | 120| 120| GetLimits: function() { return {"Foo": 10}; }, | 121| |- GetCounts: function() { return {"Foo": 5}; }, | | 121|+ "GetCounts": function() { return {"Foo": 5}; }, | 122| 122| GetLimitChangers: function() {return {"Foo": {}}; } | 123| 123| }); | 124| 124| | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 118| 118| | 119| 119| AddMock(100, IID_EntityLimits, { | 120| 120| GetLimits: function() { return {"Foo": 10}; }, | 121| |- GetCounts: function() { return {"Foo": 5}; }, | | 121|+ GetCounts: function() { return { "Foo": 5}; }, | 122| 122| GetLimitChangers: function() {return {"Foo": {}}; } | 123| 123| }); | 124| 124| | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 118| 118| | 119| 119| AddMock(100, IID_EntityLimits, { | 120| 120| GetLimits: function() { return {"Foo": 10}; }, | 121| |- GetCounts: function() { return {"Foo": 5}; }, | | 121|+ GetCounts: function() { return {"Foo": 5 }; }, | 122| 122| GetLimitChangers: function() {return {"Foo": {}}; } | 123| 123| }); | 124| 124| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLimitChangers' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 119| 119| AddMock(100, IID_EntityLimits, { | 120| 120| GetLimits: function() { return {"Foo": 10}; }, | 121| 121| GetCounts: function() { return {"Foo": 5}; }, | 122| |- GetLimitChangers: function() {return {"Foo": {}}; } | | 122|+ "GetLimitChangers": function() {return {"Foo": {}}; } | 123| 123| }); | 124| 124| | 125| 125| AddMock(100, IID_TechnologyManager, { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 119| 119| AddMock(100, IID_EntityLimits, { | 120| 120| GetLimits: function() { return {"Foo": 10}; }, | 121| 121| GetCounts: function() { return {"Foo": 5}; }, | 122| |- GetLimitChangers: function() {return {"Foo": {}}; } | | 122|+ GetLimitChangers: function() {return { "Foo": {}}; } | 123| 123| }); | 124| 124| | 125| 125| AddMock(100, IID_TechnologyManager, { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 119| 119| AddMock(100, IID_EntityLimits, { | 120| 120| GetLimits: function() { return {"Foo": 10}; }, | 121| 121| GetCounts: function() { return {"Foo": 5}; }, | 122| |- GetLimitChangers: function() {return {"Foo": {}}; } | | 122|+ GetLimitChangers: function() {return {"Foo": {} }; } | 123| 123| }); | 124| 124| | 125| 125| AddMock(100, IID_TechnologyManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetBasicStatistics' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 132| 132| }); | 133| 133| | 134| 134| AddMock(100, IID_StatisticsTracker, { | 135| |- GetBasicStatistics: function() { | | 135|+ "GetBasicStatistics": function() { | 136| 136| return { | 137| 137| "resourcesGathered": { | 138| 138| "food": 100, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSequences' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 144| 144| "percentMapExplored": 10 | 145| 145| }; | 146| 146| }, | 147| |- GetSequences: function() { | | 147|+ "GetSequences": function() { | 148| 148| return { | 149| 149| "unitsTrained": [0, 10], | 150| 150| "unitsLost": [0, 42], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseTrainedUnitsCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 169| 169| "teamPeakPercentOfMapControlled": [0, 10] | 170| 170| }; | 171| 171| }, | 172| |- IncreaseTrainedUnitsCounter: function() { return 1; }, | | 172|+ "IncreaseTrainedUnitsCounter": function() { return 1; }, | 173| 173| IncreaseConstructedBuildingsCounter: function() { return 1; }, | 174| 174| IncreaseBuiltCivCentresCounter: function() { return 1; } | 175| 175| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseConstructedBuildingsCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 170| 170| }; | 171| 171| }, | 172| 172| IncreaseTrainedUnitsCounter: function() { return 1; }, | 173| |- IncreaseConstructedBuildingsCounter: function() { return 1; }, | | 173|+ "IncreaseConstructedBuildingsCounter": function() { return 1; }, | 174| 174| IncreaseBuiltCivCentresCounter: function() { return 1; } | 175| 175| }); | 176| 176| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseBuiltCivCentresCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 171| 171| }, | 172| 172| IncreaseTrainedUnitsCounter: function() { return 1; }, | 173| 173| IncreaseConstructedBuildingsCounter: function() { return 1; }, | 174| |- IncreaseBuiltCivCentresCounter: function() { return 1; } | | 174|+ "IncreaseBuiltCivCentresCounter": function() { return 1; } | 175| 175| }); | 176| 176| | 177| 177| AddMock(101, IID_Player, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetName' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 175| 175| }); | 176| 176| | 177| 177| AddMock(101, IID_Player, { | 178| |- GetName: function() { return "Player 2"; }, | | 178|+ "GetName": function() { return "Player 2"; }, | 179| 179| GetCiv: function() { return "mace"; }, | 180| 180| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 181| 181| CanControlAllUnits: function() { return true; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCiv' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 176| 176| | 177| 177| AddMock(101, IID_Player, { | 178| 178| GetName: function() { return "Player 2"; }, | 179| |- GetCiv: function() { return "mace"; }, | | 179|+ "GetCiv": function() { return "mace"; }, | 180| 180| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 181| 181| CanControlAllUnits: function() { return true; }, | 182| 182| GetPopulationCount: function() { return 40; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetColor' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 177| 177| AddMock(101, IID_Player, { | 178| 178| GetName: function() { return "Player 2"; }, | 179| 179| GetCiv: function() { return "mace"; }, | 180| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 180|+ "GetColor": function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 181| 181| CanControlAllUnits: function() { return true; }, | 182| 182| GetPopulationCount: function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'r' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 177| 177| AddMock(101, IID_Player, { | 178| 178| GetName: function() { return "Player 2"; }, | 179| 179| GetCiv: function() { return "mace"; }, | 180| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 180|+ GetColor: function() { return { "r": 1, g: 0, b: 0, a: 1}; }, | 181| 181| CanControlAllUnits: function() { return true; }, | 182| 182| GetPopulationCount: function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'g' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 177| 177| AddMock(101, IID_Player, { | 178| 178| GetName: function() { return "Player 2"; }, | 179| 179| GetCiv: function() { return "mace"; }, | 180| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 180|+ GetColor: function() { return { r: 1, "g": 0, b: 0, a: 1}; }, | 181| 181| CanControlAllUnits: function() { return true; }, | 182| 182| GetPopulationCount: function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'b' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 177| 177| AddMock(101, IID_Player, { | 178| 178| GetName: function() { return "Player 2"; }, | 179| 179| GetCiv: function() { return "mace"; }, | 180| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 180|+ GetColor: function() { return { r: 1, g: 0, "b": 0, a: 1}; }, | 181| 181| CanControlAllUnits: function() { return true; }, | 182| 182| GetPopulationCount: function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'a' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 177| 177| AddMock(101, IID_Player, { | 178| 178| GetName: function() { return "Player 2"; }, | 179| 179| GetCiv: function() { return "mace"; }, | 180| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 180|+ GetColor: function() { return { r: 1, g: 0, b: 0, "a": 1}; }, | 181| 181| CanControlAllUnits: function() { return true; }, | 182| 182| GetPopulationCount: function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 177| 177| AddMock(101, IID_Player, { | 178| 178| GetName: function() { return "Player 2"; }, | 179| 179| GetCiv: function() { return "mace"; }, | 180| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 180|+ GetColor: function() { return { r: 1, g: 0, b: 0, a: 1 }; }, | 181| 181| CanControlAllUnits: function() { return true; }, | 182| 182| GetPopulationCount: function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'CanControlAllUnits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 178| 178| GetName: function() { return "Player 2"; }, | 179| 179| GetCiv: function() { return "mace"; }, | 180| 180| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 181| |- CanControlAllUnits: function() { return true; }, | | 181|+ "CanControlAllUnits": function() { return true; }, | 182| 182| GetPopulationCount: function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | 184| 184| GetMaxPopulation: function() { return 300; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPopulationCount' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 179| 179| GetCiv: function() { return "mace"; }, | 180| 180| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 181| 181| CanControlAllUnits: function() { return true; }, | 182| |- GetPopulationCount: function() { return 40; }, | | 182|+ "GetPopulationCount": function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | 184| 184| GetMaxPopulation: function() { return 300; }, | 185| 185| GetResourceCounts: function() { return { food: 200 }; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPopulationLimit' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 180| 180| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 181| 181| CanControlAllUnits: function() { return true; }, | 182| 182| GetPopulationCount: function() { return 40; }, | 183| |- GetPopulationLimit: function() { return 30; }, | | 183|+ "GetPopulationLimit": function() { return 30; }, | 184| 184| GetMaxPopulation: function() { return 300; }, | 185| 185| GetResourceCounts: function() { return { food: 200 }; }, | 186| 186| GetPanelEntities: function() { return []; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetMaxPopulation' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 181| 181| CanControlAllUnits: function() { return true; }, | 182| 182| GetPopulationCount: function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | 184| |- GetMaxPopulation: function() { return 300; }, | | 184|+ "GetMaxPopulation": function() { return 300; }, | 185| 185| GetResourceCounts: function() { return { food: 200 }; }, | 186| 186| GetPanelEntities: function() { return []; }, | 187| 187| IsTrainingBlocked: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetResourceCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 182| 182| GetPopulationCount: function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | 184| 184| GetMaxPopulation: function() { return 300; }, | 185| |- GetResourceCounts: function() { return { food: 200 }; }, | | 185|+ "GetResourceCounts": function() { return { food: 200 }; }, | 186| 186| GetPanelEntities: function() { return []; }, | 187| 187| IsTrainingBlocked: function() { return false; }, | 188| 188| GetState: function() { return "active"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 182| 182| GetPopulationCount: function() { return 40; }, | 183| 183| GetPopulationLimit: function() { return 30; }, | 184| 184| GetMaxPopulation: function() { return 300; }, | 185| |- GetResourceCounts: function() { return { food: 200 }; }, | | 185|+ GetResourceCounts: function() { return { "food": 200 }; }, | 186| 186| GetPanelEntities: function() { return []; }, | 187| 187| IsTrainingBlocked: function() { return false; }, | 188| 188| GetState: function() { return "active"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPanelEntities' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 183| 183| GetPopulationLimit: function() { return 30; }, | 184| 184| GetMaxPopulation: function() { return 300; }, | 185| 185| GetResourceCounts: function() { return { food: 200 }; }, | 186| |- GetPanelEntities: function() { return []; }, | | 186|+ "GetPanelEntities": function() { return []; }, | 187| 187| IsTrainingBlocked: function() { return false; }, | 188| 188| GetState: function() { return "active"; }, | 189| 189| GetTeam: function() { return -1; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsTrainingBlocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 184| 184| GetMaxPopulation: function() { return 300; }, | 185| 185| GetResourceCounts: function() { return { food: 200 }; }, | 186| 186| GetPanelEntities: function() { return []; }, | 187| |- IsTrainingBlocked: function() { return false; }, | | 187|+ "IsTrainingBlocked": function() { return false; }, | 188| 188| GetState: function() { return "active"; }, | 189| 189| GetTeam: function() { return -1; }, | 190| 190| GetLockTeams: function() {return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetState' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 185| 185| GetResourceCounts: function() { return { food: 200 }; }, | 186| 186| GetPanelEntities: function() { return []; }, | 187| 187| IsTrainingBlocked: function() { return false; }, | 188| |- GetState: function() { return "active"; }, | | 188|+ "GetState": function() { return "active"; }, | 189| 189| GetTeam: function() { return -1; }, | 190| 190| GetLockTeams: function() {return false; }, | 191| 191| GetCheatsEnabled: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTeam' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 186| 186| GetPanelEntities: function() { return []; }, | 187| 187| IsTrainingBlocked: function() { return false; }, | 188| 188| GetState: function() { return "active"; }, | 189| |- GetTeam: function() { return -1; }, | | 189|+ "GetTeam": function() { return -1; }, | 190| 190| GetLockTeams: function() {return false; }, | 191| 191| GetCheatsEnabled: function() { return false; }, | 192| 192| GetDiplomacy: function() { return [-1, 1]; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLockTeams' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 187| 187| IsTrainingBlocked: function() { return false; }, | 188| 188| GetState: function() { return "active"; }, | 189| 189| GetTeam: function() { return -1; }, | 190| |- GetLockTeams: function() {return false; }, | | 190|+ "GetLockTeams": function() {return false; }, | 191| 191| GetCheatsEnabled: function() { return false; }, | 192| 192| GetDiplomacy: function() { return [-1, 1]; }, | 193| 193| IsAlly: function() { return true; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCheatsEnabled' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 188| 188| GetState: function() { return "active"; }, | 189| 189| GetTeam: function() { return -1; }, | 190| 190| GetLockTeams: function() {return false; }, | 191| |- GetCheatsEnabled: function() { return false; }, | | 191|+ "GetCheatsEnabled": function() { return false; }, | 192| 192| GetDiplomacy: function() { return [-1, 1]; }, | 193| 193| IsAlly: function() { return true; }, | 194| 194| IsMutualAlly: function() {return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDiplomacy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 189| 189| GetTeam: function() { return -1; }, | 190| 190| GetLockTeams: function() {return false; }, | 191| 191| GetCheatsEnabled: function() { return false; }, | 192| |- GetDiplomacy: function() { return [-1, 1]; }, | | 192|+ "GetDiplomacy": function() { return [-1, 1]; }, | 193| 193| IsAlly: function() { return true; }, | 194| 194| IsMutualAlly: function() {return false; }, | 195| 195| IsNeutral: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 190| 190| GetLockTeams: function() {return false; }, | 191| 191| GetCheatsEnabled: function() { return false; }, | 192| 192| GetDiplomacy: function() { return [-1, 1]; }, | 193| |- IsAlly: function() { return true; }, | | 193|+ "IsAlly": function() { return true; }, | 194| 194| IsMutualAlly: function() {return false; }, | 195| 195| IsNeutral: function() { return false; }, | 196| 196| IsEnemy: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsMutualAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 191| 191| GetCheatsEnabled: function() { return false; }, | 192| 192| GetDiplomacy: function() { return [-1, 1]; }, | 193| 193| IsAlly: function() { return true; }, | 194| |- IsMutualAlly: function() {return false; }, | | 194|+ "IsMutualAlly": function() {return false; }, | 195| 195| IsNeutral: function() { return false; }, | 196| 196| IsEnemy: function() { return false; }, | 197| 197| GetDisabledTemplates: function() { return {}; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsNeutral' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 192| 192| GetDiplomacy: function() { return [-1, 1]; }, | 193| 193| IsAlly: function() { return true; }, | 194| 194| IsMutualAlly: function() {return false; }, | 195| |- IsNeutral: function() { return false; }, | | 195|+ "IsNeutral": function() { return false; }, | 196| 196| IsEnemy: function() { return false; }, | 197| 197| GetDisabledTemplates: function() { return {}; }, | 198| 198| GetDisabledTechnologies: function() { return {}; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsEnemy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 193| 193| IsAlly: function() { return true; }, | 194| 194| IsMutualAlly: function() {return false; }, | 195| 195| IsNeutral: function() { return false; }, | 196| |- IsEnemy: function() { return false; }, | | 196|+ "IsEnemy": function() { return false; }, | 197| 197| GetDisabledTemplates: function() { return {}; }, | 198| 198| GetDisabledTechnologies: function() { return {}; }, | 199| 199| GetSpyCostMultiplier: function() { return 1; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDisabledTemplates' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 194| 194| IsMutualAlly: function() {return false; }, | 195| 195| IsNeutral: function() { return false; }, | 196| 196| IsEnemy: function() { return false; }, | 197| |- GetDisabledTemplates: function() { return {}; }, | | 197|+ "GetDisabledTemplates": function() { return {}; }, | 198| 198| GetDisabledTechnologies: function() { return {}; }, | 199| 199| GetSpyCostMultiplier: function() { return 1; }, | 200| 200| HasSharedDropsites: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDisabledTechnologies' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 195| 195| IsNeutral: function() { return false; }, | 196| 196| IsEnemy: function() { return false; }, | 197| 197| GetDisabledTemplates: function() { return {}; }, | 198| |- GetDisabledTechnologies: function() { return {}; }, | | 198|+ "GetDisabledTechnologies": function() { return {}; }, | 199| 199| GetSpyCostMultiplier: function() { return 1; }, | 200| 200| HasSharedDropsites: function() { return false; }, | 201| 201| HasSharedLos: function() { return false; } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSpyCostMultiplier' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 196| 196| IsEnemy: function() { return false; }, | 197| 197| GetDisabledTemplates: function() { return {}; }, | 198| 198| GetDisabledTechnologies: function() { return {}; }, | 199| |- GetSpyCostMultiplier: function() { return 1; }, | | 199|+ "GetSpyCostMultiplier": function() { return 1; }, | 200| 200| HasSharedDropsites: function() { return false; }, | 201| 201| HasSharedLos: function() { return false; } | 202| 202| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasSharedDropsites' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 197| 197| GetDisabledTemplates: function() { return {}; }, | 198| 198| GetDisabledTechnologies: function() { return {}; }, | 199| 199| GetSpyCostMultiplier: function() { return 1; }, | 200| |- HasSharedDropsites: function() { return false; }, | | 200|+ "HasSharedDropsites": function() { return false; }, | 201| 201| HasSharedLos: function() { return false; } | 202| 202| }); | 203| 203| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasSharedLos' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 198| 198| GetDisabledTechnologies: function() { return {}; }, | 199| 199| GetSpyCostMultiplier: function() { return 1; }, | 200| 200| HasSharedDropsites: function() { return false; }, | 201| |- HasSharedLos: function() { return false; } | | 201|+ "HasSharedLos": function() { return false; } | 202| 202| }); | 203| 203| | 204| 204| AddMock(101, IID_EntityLimits, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLimits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 202| 202| }); | 203| 203| | 204| 204| AddMock(101, IID_EntityLimits, { | 205| |- GetLimits: function() { return {"Bar": 20}; }, | | 205|+ "GetLimits": function() { return {"Bar": 20}; }, | 206| 206| GetCounts: function() { return {"Bar": 0}; }, | 207| 207| GetLimitChangers: function() {return {"Bar": {}}; } | 208| 208| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 202| 202| }); | 203| 203| | 204| 204| AddMock(101, IID_EntityLimits, { | 205| |- GetLimits: function() { return {"Bar": 20}; }, | | 205|+ GetLimits: function() { return { "Bar": 20}; }, | 206| 206| GetCounts: function() { return {"Bar": 0}; }, | 207| 207| GetLimitChangers: function() {return {"Bar": {}}; } | 208| 208| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 202| 202| }); | 203| 203| | 204| 204| AddMock(101, IID_EntityLimits, { | 205| |- GetLimits: function() { return {"Bar": 20}; }, | | 205|+ GetLimits: function() { return {"Bar": 20 }; }, | 206| 206| GetCounts: function() { return {"Bar": 0}; }, | 207| 207| GetLimitChangers: function() {return {"Bar": {}}; } | 208| 208| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 203| 203| | 204| 204| AddMock(101, IID_EntityLimits, { | 205| 205| GetLimits: function() { return {"Bar": 20}; }, | 206| |- GetCounts: function() { return {"Bar": 0}; }, | | 206|+ "GetCounts": function() { return {"Bar": 0}; }, | 207| 207| GetLimitChangers: function() {return {"Bar": {}}; } | 208| 208| }); | 209| 209| | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 203| 203| | 204| 204| AddMock(101, IID_EntityLimits, { | 205| 205| GetLimits: function() { return {"Bar": 20}; }, | 206| |- GetCounts: function() { return {"Bar": 0}; }, | | 206|+ GetCounts: function() { return { "Bar": 0}; }, | 207| 207| GetLimitChangers: function() {return {"Bar": {}}; } | 208| 208| }); | 209| 209| | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 203| 203| | 204| 204| AddMock(101, IID_EntityLimits, { | 205| 205| GetLimits: function() { return {"Bar": 20}; }, | 206| |- GetCounts: function() { return {"Bar": 0}; }, | | 206|+ GetCounts: function() { return {"Bar": 0 }; }, | 207| 207| GetLimitChangers: function() {return {"Bar": {}}; } | 208| 208| }); | 209| 209| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLimitChangers' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 204| 204| AddMock(101, IID_EntityLimits, { | 205| 205| GetLimits: function() { return {"Bar": 20}; }, | 206| 206| GetCounts: function() { return {"Bar": 0}; }, | 207| |- GetLimitChangers: function() {return {"Bar": {}}; } | | 207|+ "GetLimitChangers": function() {return {"Bar": {}}; } | 208| 208| }); | 209| 209| | 210| 210| AddMock(101, IID_TechnologyManager, { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 204| 204| AddMock(101, IID_EntityLimits, { | 205| 205| GetLimits: function() { return {"Bar": 20}; }, | 206| 206| GetCounts: function() { return {"Bar": 0}; }, | 207| |- GetLimitChangers: function() {return {"Bar": {}}; } | | 207|+ GetLimitChangers: function() {return { "Bar": {}}; } | 208| 208| }); | 209| 209| | 210| 210| AddMock(101, IID_TechnologyManager, { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 204| 204| AddMock(101, IID_EntityLimits, { | 205| 205| GetLimits: function() { return {"Bar": 20}; }, | 206| 206| GetCounts: function() { return {"Bar": 0}; }, | 207| |- GetLimitChangers: function() {return {"Bar": {}}; } | | 207|+ GetLimitChangers: function() {return {"Bar": {} }; } | 208| 208| }); | 209| 209| | 210| 210| AddMock(101, IID_TechnologyManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetBasicStatistics' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 217| 217| }); | 218| 218| | 219| 219| AddMock(101, IID_StatisticsTracker, { | 220| |- GetBasicStatistics: function() { | | 220|+ "GetBasicStatistics": function() { | 221| 221| return { | 222| 222| "resourcesGathered": { | 223| 223| "food": 100, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSequences' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 229| 229| "percentMapExplored": 10 | 230| 230| }; | 231| 231| }, | 232| |- GetSequences: function() { | | 232|+ "GetSequences": function() { | 233| 233| return { | 234| 234| "unitsTrained": [0, 10], | 235| 235| "unitsLost": [0, 9], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseTrainedUnitsCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 254| 254| "teamPeakPercentOfMapControlled": [0, 10] | 255| 255| }; | 256| 256| }, | 257| |- IncreaseTrainedUnitsCounter: function() { return 1; }, | | 257|+ "IncreaseTrainedUnitsCounter": function() { return 1; }, | 258| 258| IncreaseConstructedBuildingsCounter: function() { return 1; }, | 259| 259| IncreaseBuiltCivCentresCounter: function() { return 1; } | 260| 260| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseConstructedBuildingsCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 255| 255| }; | 256| 256| }, | 257| 257| IncreaseTrainedUnitsCounter: function() { return 1; }, | 258| |- IncreaseConstructedBuildingsCounter: function() { return 1; }, | | 258|+ "IncreaseConstructedBuildingsCounter": function() { return 1; }, | 259| 259| IncreaseBuiltCivCentresCounter: function() { return 1; } | 260| 260| }); | 261| 261| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseBuiltCivCentresCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 256| 256| }, | 257| 257| IncreaseTrainedUnitsCounter: function() { return 1; }, | 258| 258| IncreaseConstructedBuildingsCounter: function() { return 1; }, | 259| |- IncreaseBuiltCivCentresCounter: function() { return 1; } | | 259|+ "IncreaseBuiltCivCentresCounter": function() { return 1; } | 260| 260| }); | 261| 261| | 262| 262| // Note: property order matters when using TS_ASSERT_UNEVAL_EQUALS, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'players' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 263| 263| // because uneval preserves property order. So make sure this object | 264| 264| // matches the ordering in GuiInterface. | 265| 265| TS_ASSERT_UNEVAL_EQUALS(cmp.GetSimulationState(), { | 266| |- players: [ | | 266|+ "players": [ | 267| 267| { | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'name' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 265| 265| TS_ASSERT_UNEVAL_EQUALS(cmp.GetSimulationState(), { | 266| 266| players: [ | 267| 267| { | 268| |- name: "Player 1", | | 268|+ "name": "Player 1", | 269| 269| civ: "gaia", | 270| 270| color: { r:1, g:1, b:1, a:1 }, | 271| 271| controlsAll: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'civ' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 266| 266| players: [ | 267| 267| { | 268| 268| name: "Player 1", | 269| |- civ: "gaia", | | 269|+ "civ": "gaia", | 270| 270| color: { r:1, g:1, b:1, a:1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'color' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| { | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | 270| |- color: { r:1, g:1, b:1, a:1 }, | | 270|+ "color": { r:1, g:1, b:1, a:1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'r' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| { | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | 270| |- color: { r:1, g:1, b:1, a:1 }, | | 270|+ color: { "r":1, g:1, b:1, a:1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'r'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| { | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | 270| |- color: { r:1, g:1, b:1, a:1 }, | | 270|+ color: { r: 1, g:1, b:1, a:1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'g' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| { | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | 270| |- color: { r:1, g:1, b:1, a:1 }, | | 270|+ color: { r:1, "g":1, b:1, a:1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'g'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| { | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | 270| |- color: { r:1, g:1, b:1, a:1 }, | | 270|+ color: { r:1, g: 1, b:1, a:1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'b' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| { | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | 270| |- color: { r:1, g:1, b:1, a:1 }, | | 270|+ color: { r:1, g:1, "b":1, a:1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'b'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| { | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | 270| |- color: { r:1, g:1, b:1, a:1 }, | | 270|+ color: { r:1, g:1, b: 1, a:1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'a' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| { | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | 270| |- color: { r:1, g:1, b:1, a:1 }, | | 270|+ color: { r:1, g:1, b:1, "a":1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'a'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| { | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | 270| |- color: { r:1, g:1, b:1, a:1 }, | | 270|+ color: { r:1, g:1, b:1, a: 1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'controlsAll' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| name: "Player 1", | 269| 269| civ: "gaia", | 270| 270| color: { r:1, g:1, b:1, a:1 }, | 271| |- controlsAll: false, | | 271|+ "controlsAll": false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | 274| 274| popMax: 200, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popCount' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 269| 269| civ: "gaia", | 270| 270| color: { r:1, g:1, b:1, a:1 }, | 271| 271| controlsAll: false, | 272| |- popCount: 10, | | 272|+ "popCount": 10, | 273| 273| popLimit: 20, | 274| 274| popMax: 200, | 275| 275| panelEntities: [], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popLimit' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 270| 270| color: { r:1, g:1, b:1, a:1 }, | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| |- popLimit: 20, | | 273|+ "popLimit": 20, | 274| 274| popMax: 200, | 275| 275| panelEntities: [], | 276| 276| resourceCounts: { food: 100 }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popMax' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 271| 271| controlsAll: false, | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | 274| |- popMax: 200, | | 274|+ "popMax": 200, | 275| 275| panelEntities: [], | 276| 276| resourceCounts: { food: 100 }, | 277| 277| trainingBlocked: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'panelEntities' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 272| 272| popCount: 10, | 273| 273| popLimit: 20, | 274| 274| popMax: 200, | 275| |- panelEntities: [], | | 275|+ "panelEntities": [], | 276| 276| resourceCounts: { food: 100 }, | 277| 277| trainingBlocked: false, | 278| 278| state: "active", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'resourceCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 273| 273| popLimit: 20, | 274| 274| popMax: 200, | 275| 275| panelEntities: [], | 276| |- resourceCounts: { food: 100 }, | | 276|+ "resourceCounts": { food: 100 }, | 277| 277| trainingBlocked: false, | 278| 278| state: "active", | 279| 279| team: -1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 273| 273| popLimit: 20, | 274| 274| popMax: 200, | 275| 275| panelEntities: [], | 276| |- resourceCounts: { food: 100 }, | | 276|+ resourceCounts: { "food": 100 }, | 277| 277| trainingBlocked: false, | 278| 278| state: "active", | 279| 279| team: -1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'trainingBlocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 274| 274| popMax: 200, | 275| 275| panelEntities: [], | 276| 276| resourceCounts: { food: 100 }, | 277| |- trainingBlocked: false, | | 277|+ "trainingBlocked": false, | 278| 278| state: "active", | 279| 279| team: -1, | 280| 280| teamsLocked: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'state' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 275| 275| panelEntities: [], | 276| 276| resourceCounts: { food: 100 }, | 277| 277| trainingBlocked: false, | 278| |- state: "active", | | 278|+ "state": "active", | 279| 279| team: -1, | 280| 280| teamsLocked: false, | 281| 281| cheatsEnabled: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'team' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 276| 276| resourceCounts: { food: 100 }, | 277| 277| trainingBlocked: false, | 278| 278| state: "active", | 279| |- team: -1, | | 279|+ "team": -1, | 280| 280| teamsLocked: false, | 281| 281| cheatsEnabled: false, | 282| 282| disabledTemplates: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'teamsLocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 277| 277| trainingBlocked: false, | 278| 278| state: "active", | 279| 279| team: -1, | 280| |- teamsLocked: false, | | 280|+ "teamsLocked": false, | 281| 281| cheatsEnabled: false, | 282| 282| disabledTemplates: {}, | 283| 283| disabledTechnologies: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'cheatsEnabled' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 278| 278| state: "active", | 279| 279| team: -1, | 280| 280| teamsLocked: false, | 281| |- cheatsEnabled: false, | | 281|+ "cheatsEnabled": false, | 282| 282| disabledTemplates: {}, | 283| 283| disabledTechnologies: {}, | 284| 284| hasSharedDropsites: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'disabledTemplates' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 279| 279| team: -1, | 280| 280| teamsLocked: false, | 281| 281| cheatsEnabled: false, | 282| |- disabledTemplates: {}, | | 282|+ "disabledTemplates": {}, | 283| 283| disabledTechnologies: {}, | 284| 284| hasSharedDropsites: false, | 285| 285| hasSharedLos: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'disabledTechnologies' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 280| 280| teamsLocked: false, | 281| 281| cheatsEnabled: false, | 282| 282| disabledTemplates: {}, | 283| |- disabledTechnologies: {}, | | 283|+ "disabledTechnologies": {}, | 284| 284| hasSharedDropsites: false, | 285| 285| hasSharedLos: false, | 286| 286| spyCostMultiplier: 1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'hasSharedDropsites' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 281| 281| cheatsEnabled: false, | 282| 282| disabledTemplates: {}, | 283| 283| disabledTechnologies: {}, | 284| |- hasSharedDropsites: false, | | 284|+ "hasSharedDropsites": false, | 285| 285| hasSharedLos: false, | 286| 286| spyCostMultiplier: 1, | 287| 287| phase: "village", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'hasSharedLos' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 282| 282| disabledTemplates: {}, | 283| 283| disabledTechnologies: {}, | 284| 284| hasSharedDropsites: false, | 285| |- hasSharedLos: false, | | 285|+ "hasSharedLos": false, | 286| 286| spyCostMultiplier: 1, | 287| 287| phase: "village", | 288| 288| isAlly: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'spyCostMultiplier' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 283| 283| disabledTechnologies: {}, | 284| 284| hasSharedDropsites: false, | 285| 285| hasSharedLos: false, | 286| |- spyCostMultiplier: 1, | | 286|+ "spyCostMultiplier": 1, | 287| 287| phase: "village", | 288| 288| isAlly: [false, false], | 289| 289| isMutualAlly: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'phase' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 284| 284| hasSharedDropsites: false, | 285| 285| hasSharedLos: false, | 286| 286| spyCostMultiplier: 1, | 287| |- phase: "village", | | 287|+ "phase": "village", | 288| 288| isAlly: [false, false], | 289| 289| isMutualAlly: [false, false], | 290| 290| isNeutral: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 285| 285| hasSharedLos: false, | 286| 286| spyCostMultiplier: 1, | 287| 287| phase: "village", | 288| |- isAlly: [false, false], | | 288|+ "isAlly": [false, false], | 289| 289| isMutualAlly: [false, false], | 290| 290| isNeutral: [false, false], | 291| 291| isEnemy: [true, true], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isMutualAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 286| 286| spyCostMultiplier: 1, | 287| 287| phase: "village", | 288| 288| isAlly: [false, false], | 289| |- isMutualAlly: [false, false], | | 289|+ "isMutualAlly": [false, false], | 290| 290| isNeutral: [false, false], | 291| 291| isEnemy: [true, true], | 292| 292| entityLimits: {"Foo": 10}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isNeutral' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 287| 287| phase: "village", | 288| 288| isAlly: [false, false], | 289| 289| isMutualAlly: [false, false], | 290| |- isNeutral: [false, false], | | 290|+ "isNeutral": [false, false], | 291| 291| isEnemy: [true, true], | 292| 292| entityLimits: {"Foo": 10}, | 293| 293| entityCounts: {"Foo": 5}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isEnemy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 288| 288| isAlly: [false, false], | 289| 289| isMutualAlly: [false, false], | 290| 290| isNeutral: [false, false], | 291| |- isEnemy: [true, true], | | 291|+ "isEnemy": [true, true], | 292| 292| entityLimits: {"Foo": 10}, | 293| 293| entityCounts: {"Foo": 5}, | 294| 294| entityLimitChangers: {"Foo": {}}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityLimits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 289| 289| isMutualAlly: [false, false], | 290| 290| isNeutral: [false, false], | 291| 291| isEnemy: [true, true], | 292| |- entityLimits: {"Foo": 10}, | | 292|+ "entityLimits": {"Foo": 10}, | 293| 293| entityCounts: {"Foo": 5}, | 294| 294| entityLimitChangers: {"Foo": {}}, | 295| 295| researchQueued: new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 289| 289| isMutualAlly: [false, false], | 290| 290| isNeutral: [false, false], | 291| 291| isEnemy: [true, true], | 292| |- entityLimits: {"Foo": 10}, | | 292|+ entityLimits: { "Foo": 10}, | 293| 293| entityCounts: {"Foo": 5}, | 294| 294| entityLimitChangers: {"Foo": {}}, | 295| 295| researchQueued: new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 289| 289| isMutualAlly: [false, false], | 290| 290| isNeutral: [false, false], | 291| 291| isEnemy: [true, true], | 292| |- entityLimits: {"Foo": 10}, | | 292|+ entityLimits: {"Foo": 10 }, | 293| 293| entityCounts: {"Foo": 5}, | 294| 294| entityLimitChangers: {"Foo": {}}, | 295| 295| researchQueued: new Map(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 290| 290| isNeutral: [false, false], | 291| 291| isEnemy: [true, true], | 292| 292| entityLimits: {"Foo": 10}, | 293| |- entityCounts: {"Foo": 5}, | | 293|+ "entityCounts": {"Foo": 5}, | 294| 294| entityLimitChangers: {"Foo": {}}, | 295| 295| researchQueued: new Map(), | 296| 296| researchStarted: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 290| 290| isNeutral: [false, false], | 291| 291| isEnemy: [true, true], | 292| 292| entityLimits: {"Foo": 10}, | 293| |- entityCounts: {"Foo": 5}, | | 293|+ entityCounts: { "Foo": 5}, | 294| 294| entityLimitChangers: {"Foo": {}}, | 295| 295| researchQueued: new Map(), | 296| 296| researchStarted: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 290| 290| isNeutral: [false, false], | 291| 291| isEnemy: [true, true], | 292| 292| entityLimits: {"Foo": 10}, | 293| |- entityCounts: {"Foo": 5}, | | 293|+ entityCounts: {"Foo": 5 }, | 294| 294| entityLimitChangers: {"Foo": {}}, | 295| 295| researchQueued: new Map(), | 296| 296| researchStarted: new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityLimitChangers' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 291| 291| isEnemy: [true, true], | 292| 292| entityLimits: {"Foo": 10}, | 293| 293| entityCounts: {"Foo": 5}, | 294| |- entityLimitChangers: {"Foo": {}}, | | 294|+ "entityLimitChangers": {"Foo": {}}, | 295| 295| researchQueued: new Map(), | 296| 296| researchStarted: new Set(), | 297| 297| researchedTechs: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 291| 291| isEnemy: [true, true], | 292| 292| entityLimits: {"Foo": 10}, | 293| 293| entityCounts: {"Foo": 5}, | 294| |- entityLimitChangers: {"Foo": {}}, | | 294|+ entityLimitChangers: { "Foo": {}}, | 295| 295| researchQueued: new Map(), | 296| 296| researchStarted: new Set(), | 297| 297| researchedTechs: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 291| 291| isEnemy: [true, true], | 292| 292| entityLimits: {"Foo": 10}, | 293| 293| entityCounts: {"Foo": 5}, | 294| |- entityLimitChangers: {"Foo": {}}, | | 294|+ entityLimitChangers: {"Foo": {} }, | 295| 295| researchQueued: new Map(), | 296| 296| researchStarted: new Set(), | 297| 297| researchedTechs: new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchQueued' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 292| 292| entityLimits: {"Foo": 10}, | 293| 293| entityCounts: {"Foo": 5}, | 294| 294| entityLimitChangers: {"Foo": {}}, | 295| |- researchQueued: new Map(), | | 295|+ "researchQueued": new Map(), | 296| 296| researchStarted: new Set(), | 297| 297| researchedTechs: new Set(), | 298| 298| classCounts: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchStarted' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 293| 293| entityCounts: {"Foo": 5}, | 294| 294| entityLimitChangers: {"Foo": {}}, | 295| 295| researchQueued: new Map(), | 296| |- researchStarted: new Set(), | | 296|+ "researchStarted": new Set(), | 297| 297| researchedTechs: new Set(), | 298| 298| classCounts: {}, | 299| 299| typeCountsByClass: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchedTechs' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 294| 294| entityLimitChangers: {"Foo": {}}, | 295| 295| researchQueued: new Map(), | 296| 296| researchStarted: new Set(), | 297| |- researchedTechs: new Set(), | | 297|+ "researchedTechs": new Set(), | 298| 298| classCounts: {}, | 299| 299| typeCountsByClass: {}, | 300| 300| canBarter: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'classCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 295| 295| researchQueued: new Map(), | 296| 296| researchStarted: new Set(), | 297| 297| researchedTechs: new Set(), | 298| |- classCounts: {}, | | 298|+ "classCounts": {}, | 299| 299| typeCountsByClass: {}, | 300| 300| canBarter: false, | 301| 301| barterPrices: { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'typeCountsByClass' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 296| 296| researchStarted: new Set(), | 297| 297| researchedTechs: new Set(), | 298| 298| classCounts: {}, | 299| |- typeCountsByClass: {}, | | 299|+ "typeCountsByClass": {}, | 300| 300| canBarter: false, | 301| 301| barterPrices: { | 302| 302| "buy": { "food": 150 }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'canBarter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 297| 297| researchedTechs: new Set(), | 298| 298| classCounts: {}, | 299| 299| typeCountsByClass: {}, | 300| |- canBarter: false, | | 300|+ "canBarter": false, | 301| 301| barterPrices: { | 302| 302| "buy": { "food": 150 }, | 303| 303| "sell": { "food": 25 } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'barterPrices' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 298| 298| classCounts: {}, | 299| 299| typeCountsByClass: {}, | 300| 300| canBarter: false, | 301| |- barterPrices: { | | 301|+ "barterPrices": { | 302| 302| "buy": { "food": 150 }, | 303| 303| "sell": { "food": 25 } | 304| 304| }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'statistics' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 302| 302| "buy": { "food": 150 }, | 303| 303| "sell": { "food": 25 } | 304| 304| }, | 305| |- statistics: { | | 305|+ "statistics": { | 306| 306| resourcesGathered: { | 307| 307| food: 100, | 308| 308| wood: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'resourcesGathered' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 303| 303| "sell": { "food": 25 } | 304| 304| }, | 305| 305| statistics: { | 306| |- resourcesGathered: { | | 306|+ "resourcesGathered": { | 307| 307| food: 100, | 308| 308| wood: 0, | 309| 309| metal: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 304| 304| }, | 305| 305| statistics: { | 306| 306| resourcesGathered: { | 307| |- food: 100, | | 307|+ "food": 100, | 308| 308| wood: 0, | 309| 309| metal: 0, | 310| 310| stone: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'wood' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 305| 305| statistics: { | 306| 306| resourcesGathered: { | 307| 307| food: 100, | 308| |- wood: 0, | | 308|+ "wood": 0, | 309| 309| metal: 0, | 310| 310| stone: 0, | 311| 311| vegetarianFood: 0 | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'metal' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 306| 306| resourcesGathered: { | 307| 307| food: 100, | 308| 308| wood: 0, | 309| |- metal: 0, | | 309|+ "metal": 0, | 310| 310| stone: 0, | 311| 311| vegetarianFood: 0 | 312| 312| }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'stone' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 307| 307| food: 100, | 308| 308| wood: 0, | 309| 309| metal: 0, | 310| |- stone: 0, | | 310|+ "stone": 0, | 311| 311| vegetarianFood: 0 | 312| 312| }, | 313| 313| percentMapExplored: 10 | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'vegetarianFood' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 308| 308| wood: 0, | 309| 309| metal: 0, | 310| 310| stone: 0, | 311| |- vegetarianFood: 0 | | 311|+ "vegetarianFood": 0 | 312| 312| }, | 313| 313| percentMapExplored: 10 | 314| 314| } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'percentMapExplored' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 310| 310| stone: 0, | 311| 311| vegetarianFood: 0 | 312| 312| }, | 313| |- percentMapExplored: 10 | | 313|+ "percentMapExplored": 10 | 314| 314| } | 315| 315| }, | 316| 316| { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'name' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 314| 314| } | 315| 315| }, | 316| 316| { | 317| |- name: "Player 2", | | 317|+ "name": "Player 2", | 318| 318| civ: "mace", | 319| 319| color: { r:1, g:0, b:0, a:1 }, | 320| 320| controlsAll: true, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'civ' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 315| 315| }, | 316| 316| { | 317| 317| name: "Player 2", | 318| |- civ: "mace", | | 318|+ "civ": "mace", | 319| 319| color: { r:1, g:0, b:0, a:1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'color' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 316| 316| { | 317| 317| name: "Player 2", | 318| 318| civ: "mace", | 319| |- color: { r:1, g:0, b:0, a:1 }, | | 319|+ "color": { r:1, g:0, b:0, a:1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'r' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 316| 316| { | 317| 317| name: "Player 2", | 318| 318| civ: "mace", | 319| |- color: { r:1, g:0, b:0, a:1 }, | | 319|+ color: { "r":1, g:0, b:0, a:1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'r'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 316| 316| { | 317| 317| name: "Player 2", | 318| 318| civ: "mace", | 319| |- color: { r:1, g:0, b:0, a:1 }, | | 319|+ color: { r: 1, g:0, b:0, a:1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'g' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 316| 316| { | 317| 317| name: "Player 2", | 318| 318| civ: "mace", | 319| |- color: { r:1, g:0, b:0, a:1 }, | | 319|+ color: { r:1, "g":0, b:0, a:1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'g'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 316| 316| { | 317| 317| name: "Player 2", | 318| 318| civ: "mace", | 319| |- color: { r:1, g:0, b:0, a:1 }, | | 319|+ color: { r:1, g: 0, b:0, a:1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'b' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 316| 316| { | 317| 317| name: "Player 2", | 318| 318| civ: "mace", | 319| |- color: { r:1, g:0, b:0, a:1 }, | | 319|+ color: { r:1, g:0, "b":0, a:1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'b'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 316| 316| { | 317| 317| name: "Player 2", | 318| 318| civ: "mace", | 319| |- color: { r:1, g:0, b:0, a:1 }, | | 319|+ color: { r:1, g:0, b: 0, a:1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'a' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 316| 316| { | 317| 317| name: "Player 2", | 318| 318| civ: "mace", | 319| |- color: { r:1, g:0, b:0, a:1 }, | | 319|+ color: { r:1, g:0, b:0, "a":1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'a'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 316| 316| { | 317| 317| name: "Player 2", | 318| 318| civ: "mace", | 319| |- color: { r:1, g:0, b:0, a:1 }, | | 319|+ color: { r:1, g:0, b:0, a: 1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'controlsAll' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 317| 317| name: "Player 2", | 318| 318| civ: "mace", | 319| 319| color: { r:1, g:0, b:0, a:1 }, | 320| |- controlsAll: true, | | 320|+ "controlsAll": true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | 323| 323| popMax: 300, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popCount' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 318| 318| civ: "mace", | 319| 319| color: { r:1, g:0, b:0, a:1 }, | 320| 320| controlsAll: true, | 321| |- popCount: 40, | | 321|+ "popCount": 40, | 322| 322| popLimit: 30, | 323| 323| popMax: 300, | 324| 324| panelEntities: [], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popLimit' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 319| 319| color: { r:1, g:0, b:0, a:1 }, | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| |- popLimit: 30, | | 322|+ "popLimit": 30, | 323| 323| popMax: 300, | 324| 324| panelEntities: [], | 325| 325| resourceCounts: { food: 200 }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popMax' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 320| 320| controlsAll: true, | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | 323| |- popMax: 300, | | 323|+ "popMax": 300, | 324| 324| panelEntities: [], | 325| 325| resourceCounts: { food: 200 }, | 326| 326| trainingBlocked: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'panelEntities' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 321| 321| popCount: 40, | 322| 322| popLimit: 30, | 323| 323| popMax: 300, | 324| |- panelEntities: [], | | 324|+ "panelEntities": [], | 325| 325| resourceCounts: { food: 200 }, | 326| 326| trainingBlocked: false, | 327| 327| state: "active", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'resourceCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 322| 322| popLimit: 30, | 323| 323| popMax: 300, | 324| 324| panelEntities: [], | 325| |- resourceCounts: { food: 200 }, | | 325|+ "resourceCounts": { food: 200 }, | 326| 326| trainingBlocked: false, | 327| 327| state: "active", | 328| 328| team: -1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 322| 322| popLimit: 30, | 323| 323| popMax: 300, | 324| 324| panelEntities: [], | 325| |- resourceCounts: { food: 200 }, | | 325|+ resourceCounts: { "food": 200 }, | 326| 326| trainingBlocked: false, | 327| 327| state: "active", | 328| 328| team: -1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'trainingBlocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 323| 323| popMax: 300, | 324| 324| panelEntities: [], | 325| 325| resourceCounts: { food: 200 }, | 326| |- trainingBlocked: false, | | 326|+ "trainingBlocked": false, | 327| 327| state: "active", | 328| 328| team: -1, | 329| 329| teamsLocked: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'state' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 324| 324| panelEntities: [], | 325| 325| resourceCounts: { food: 200 }, | 326| 326| trainingBlocked: false, | 327| |- state: "active", | | 327|+ "state": "active", | 328| 328| team: -1, | 329| 329| teamsLocked: false, | 330| 330| cheatsEnabled: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'team' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 325| 325| resourceCounts: { food: 200 }, | 326| 326| trainingBlocked: false, | 327| 327| state: "active", | 328| |- team: -1, | | 328|+ "team": -1, | 329| 329| teamsLocked: false, | 330| 330| cheatsEnabled: false, | 331| 331| disabledTemplates: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'teamsLocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 326| 326| trainingBlocked: false, | 327| 327| state: "active", | 328| 328| team: -1, | 329| |- teamsLocked: false, | | 329|+ "teamsLocked": false, | 330| 330| cheatsEnabled: false, | 331| 331| disabledTemplates: {}, | 332| 332| disabledTechnologies: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'cheatsEnabled' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 327| 327| state: "active", | 328| 328| team: -1, | 329| 329| teamsLocked: false, | 330| |- cheatsEnabled: false, | | 330|+ "cheatsEnabled": false, | 331| 331| disabledTemplates: {}, | 332| 332| disabledTechnologies: {}, | 333| 333| hasSharedDropsites: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'disabledTemplates' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 328| 328| team: -1, | 329| 329| teamsLocked: false, | 330| 330| cheatsEnabled: false, | 331| |- disabledTemplates: {}, | | 331|+ "disabledTemplates": {}, | 332| 332| disabledTechnologies: {}, | 333| 333| hasSharedDropsites: false, | 334| 334| hasSharedLos: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'disabledTechnologies' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 329| 329| teamsLocked: false, | 330| 330| cheatsEnabled: false, | 331| 331| disabledTemplates: {}, | 332| |- disabledTechnologies: {}, | | 332|+ "disabledTechnologies": {}, | 333| 333| hasSharedDropsites: false, | 334| 334| hasSharedLos: false, | 335| 335| spyCostMultiplier: 1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'hasSharedDropsites' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 330| 330| cheatsEnabled: false, | 331| 331| disabledTemplates: {}, | 332| 332| disabledTechnologies: {}, | 333| |- hasSharedDropsites: false, | | 333|+ "hasSharedDropsites": false, | 334| 334| hasSharedLos: false, | 335| 335| spyCostMultiplier: 1, | 336| 336| phase: "village", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'hasSharedLos' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 331| 331| disabledTemplates: {}, | 332| 332| disabledTechnologies: {}, | 333| 333| hasSharedDropsites: false, | 334| |- hasSharedLos: false, | | 334|+ "hasSharedLos": false, | 335| 335| spyCostMultiplier: 1, | 336| 336| phase: "village", | 337| 337| isAlly: [true, true], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'spyCostMultiplier' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 332| 332| disabledTechnologies: {}, | 333| 333| hasSharedDropsites: false, | 334| 334| hasSharedLos: false, | 335| |- spyCostMultiplier: 1, | | 335|+ "spyCostMultiplier": 1, | 336| 336| phase: "village", | 337| 337| isAlly: [true, true], | 338| 338| isMutualAlly: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'phase' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 333| 333| hasSharedDropsites: false, | 334| 334| hasSharedLos: false, | 335| 335| spyCostMultiplier: 1, | 336| |- phase: "village", | | 336|+ "phase": "village", | 337| 337| isAlly: [true, true], | 338| 338| isMutualAlly: [false, false], | 339| 339| isNeutral: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 334| 334| hasSharedLos: false, | 335| 335| spyCostMultiplier: 1, | 336| 336| phase: "village", | 337| |- isAlly: [true, true], | | 337|+ "isAlly": [true, true], | 338| 338| isMutualAlly: [false, false], | 339| 339| isNeutral: [false, false], | 340| 340| isEnemy: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isMutualAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 335| 335| spyCostMultiplier: 1, | 336| 336| phase: "village", | 337| 337| isAlly: [true, true], | 338| |- isMutualAlly: [false, false], | | 338|+ "isMutualAlly": [false, false], | 339| 339| isNeutral: [false, false], | 340| 340| isEnemy: [false, false], | 341| 341| entityLimits: {"Bar": 20}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isNeutral' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 336| 336| phase: "village", | 337| 337| isAlly: [true, true], | 338| 338| isMutualAlly: [false, false], | 339| |- isNeutral: [false, false], | | 339|+ "isNeutral": [false, false], | 340| 340| isEnemy: [false, false], | 341| 341| entityLimits: {"Bar": 20}, | 342| 342| entityCounts: {"Bar": 0}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isEnemy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 337| 337| isAlly: [true, true], | 338| 338| isMutualAlly: [false, false], | 339| 339| isNeutral: [false, false], | 340| |- isEnemy: [false, false], | | 340|+ "isEnemy": [false, false], | 341| 341| entityLimits: {"Bar": 20}, | 342| 342| entityCounts: {"Bar": 0}, | 343| 343| entityLimitChangers: {"Bar": {}}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityLimits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 338| 338| isMutualAlly: [false, false], | 339| 339| isNeutral: [false, false], | 340| 340| isEnemy: [false, false], | 341| |- entityLimits: {"Bar": 20}, | | 341|+ "entityLimits": {"Bar": 20}, | 342| 342| entityCounts: {"Bar": 0}, | 343| 343| entityLimitChangers: {"Bar": {}}, | 344| 344| researchQueued: new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 338| 338| isMutualAlly: [false, false], | 339| 339| isNeutral: [false, false], | 340| 340| isEnemy: [false, false], | 341| |- entityLimits: {"Bar": 20}, | | 341|+ entityLimits: { "Bar": 20}, | 342| 342| entityCounts: {"Bar": 0}, | 343| 343| entityLimitChangers: {"Bar": {}}, | 344| 344| researchQueued: new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 338| 338| isMutualAlly: [false, false], | 339| 339| isNeutral: [false, false], | 340| 340| isEnemy: [false, false], | 341| |- entityLimits: {"Bar": 20}, | | 341|+ entityLimits: {"Bar": 20 }, | 342| 342| entityCounts: {"Bar": 0}, | 343| 343| entityLimitChangers: {"Bar": {}}, | 344| 344| researchQueued: new Map(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 339| 339| isNeutral: [false, false], | 340| 340| isEnemy: [false, false], | 341| 341| entityLimits: {"Bar": 20}, | 342| |- entityCounts: {"Bar": 0}, | | 342|+ "entityCounts": {"Bar": 0}, | 343| 343| entityLimitChangers: {"Bar": {}}, | 344| 344| researchQueued: new Map(), | 345| 345| researchStarted: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 339| 339| isNeutral: [false, false], | 340| 340| isEnemy: [false, false], | 341| 341| entityLimits: {"Bar": 20}, | 342| |- entityCounts: {"Bar": 0}, | | 342|+ entityCounts: { "Bar": 0}, | 343| 343| entityLimitChangers: {"Bar": {}}, | 344| 344| researchQueued: new Map(), | 345| 345| researchStarted: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 339| 339| isNeutral: [false, false], | 340| 340| isEnemy: [false, false], | 341| 341| entityLimits: {"Bar": 20}, | 342| |- entityCounts: {"Bar": 0}, | | 342|+ entityCounts: {"Bar": 0 }, | 343| 343| entityLimitChangers: {"Bar": {}}, | 344| 344| researchQueued: new Map(), | 345| 345| researchStarted: new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityLimitChangers' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 340| 340| isEnemy: [false, false], | 341| 341| entityLimits: {"Bar": 20}, | 342| 342| entityCounts: {"Bar": 0}, | 343| |- entityLimitChangers: {"Bar": {}}, | | 343|+ "entityLimitChangers": {"Bar": {}}, | 344| 344| researchQueued: new Map(), | 345| 345| researchStarted: new Set(), | 346| 346| researchedTechs: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 340| 340| isEnemy: [false, false], | 341| 341| entityLimits: {"Bar": 20}, | 342| 342| entityCounts: {"Bar": 0}, | 343| |- entityLimitChangers: {"Bar": {}}, | | 343|+ entityLimitChangers: { "Bar": {}}, | 344| 344| researchQueued: new Map(), | 345| 345| researchStarted: new Set(), | 346| 346| researchedTechs: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 340| 340| isEnemy: [false, false], | 341| 341| entityLimits: {"Bar": 20}, | 342| 342| entityCounts: {"Bar": 0}, | 343| |- entityLimitChangers: {"Bar": {}}, | | 343|+ entityLimitChangers: {"Bar": {} }, | 344| 344| researchQueued: new Map(), | 345| 345| researchStarted: new Set(), | 346| 346| researchedTechs: new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchQueued' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 341| 341| entityLimits: {"Bar": 20}, | 342| 342| entityCounts: {"Bar": 0}, | 343| 343| entityLimitChangers: {"Bar": {}}, | 344| |- researchQueued: new Map(), | | 344|+ "researchQueued": new Map(), | 345| 345| researchStarted: new Set(), | 346| 346| researchedTechs: new Set(), | 347| 347| classCounts: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchStarted' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 342| 342| entityCounts: {"Bar": 0}, | 343| 343| entityLimitChangers: {"Bar": {}}, | 344| 344| researchQueued: new Map(), | 345| |- researchStarted: new Set(), | | 345|+ "researchStarted": new Set(), | 346| 346| researchedTechs: new Set(), | 347| 347| classCounts: {}, | 348| 348| typeCountsByClass: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchedTechs' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 343| 343| entityLimitChangers: {"Bar": {}}, | 344| 344| researchQueued: new Map(), | 345| 345| researchStarted: new Set(), | 346| |- researchedTechs: new Set(), | | 346|+ "researchedTechs": new Set(), | 347| 347| classCounts: {}, | 348| 348| typeCountsByClass: {}, | 349| 349| canBarter: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'classCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 344| 344| researchQueued: new Map(), | 345| 345| researchStarted: new Set(), | 346| 346| researchedTechs: new Set(), | 347| |- classCounts: {}, | | 347|+ "classCounts": {}, | 348| 348| typeCountsByClass: {}, | 349| 349| canBarter: false, | 350| 350| barterPrices: { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'typeCountsByClass' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 345| 345| researchStarted: new Set(), | 346| 346| researchedTechs: new Set(), | 347| 347| classCounts: {}, | 348| |- typeCountsByClass: {}, | | 348|+ "typeCountsByClass": {}, | 349| 349| canBarter: false, | 350| 350| barterPrices: { | 351| 351| "buy": { "food": 150 }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'canBarter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 346| 346| researchedTechs: new Set(), | 347| 347| classCounts: {}, | 348| 348| typeCountsByClass: {}, | 349| |- canBarter: false, | | 349|+ "canBarter": false, | 350| 350| barterPrices: { | 351| 351| "buy": { "food": 150 }, | 352| 352| "sell": { "food": 25 } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'barterPrices' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 347| 347| classCounts: {}, | 348| 348| typeCountsByClass: {}, | 349| 349| canBarter: false, | 350| |- barterPrices: { | | 350|+ "barterPrices": { | 351| 351| "buy": { "food": 150 }, | 352| 352| "sell": { "food": 25 } | 353| 353| }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'statistics' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 351| 351| "buy": { "food": 150 }, | 352| 352| "sell": { "food": 25 } | 353| 353| }, | 354| |- statistics: { | | 354|+ "statistics": { | 355| 355| resourcesGathered: { | 356| 356| food: 100, | 357| 357| wood: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'resourcesGathered' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 352| 352| "sell": { "food": 25 } | 353| 353| }, | 354| 354| statistics: { | 355| |- resourcesGathered: { | | 355|+ "resourcesGathered": { | 356| 356| food: 100, | 357| 357| wood: 0, | 358| 358| metal: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 353| 353| }, | 354| 354| statistics: { | 355| 355| resourcesGathered: { | 356| |- food: 100, | | 356|+ "food": 100, | 357| 357| wood: 0, | 358| 358| metal: 0, | 359| 359| stone: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'wood' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 354| 354| statistics: { | 355| 355| resourcesGathered: { | 356| 356| food: 100, | 357| |- wood: 0, | | 357|+ "wood": 0, | 358| 358| metal: 0, | 359| 359| stone: 0, | 360| 360| vegetarianFood: 0 | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'metal' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 355| 355| resourcesGathered: { | 356| 356| food: 100, | 357| 357| wood: 0, | 358| |- metal: 0, | | 358|+ "metal": 0, | 359| 359| stone: 0, | 360| 360| vegetarianFood: 0 | 361| 361| }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'stone' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 356| 356| food: 100, | 357| 357| wood: 0, | 358| 358| metal: 0, | 359| |- stone: 0, | | 359|+ "stone": 0, | 360| 360| vegetarianFood: 0 | 361| 361| }, | 362| 362| percentMapExplored: 10 | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'vegetarianFood' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 357| 357| wood: 0, | 358| 358| metal: 0, | 359| 359| stone: 0, | 360| |- vegetarianFood: 0 | | 360|+ "vegetarianFood": 0 | 361| 361| }, | 362| 362| percentMapExplored: 10 | 363| 363| } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'percentMapExplored' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 359| 359| stone: 0, | 360| 360| vegetarianFood: 0 | 361| 361| }, | 362| |- percentMapExplored: 10 | | 362|+ "percentMapExplored": 10 | 363| 363| } | 364| 364| } | 365| 365| ], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'circularMap' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 363| 363| } | 364| 364| } | 365| 365| ], | 366| |- circularMap: false, | | 366|+ "circularMap": false, | 367| 367| timeElapsed: 0, | 368| 368| "victoryConditions": ["conquest", "wonder"], | 369| 369| alliedVictory: false | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'timeElapsed' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 364| 364| } | 365| 365| ], | 366| 366| circularMap: false, | 367| |- timeElapsed: 0, | | 367|+ "timeElapsed": 0, | 368| 368| "victoryConditions": ["conquest", "wonder"], | 369| 369| alliedVictory: false | 370| 370| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'alliedVictory' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 366| 366| circularMap: false, | 367| 367| timeElapsed: 0, | 368| 368| "victoryConditions": ["conquest", "wonder"], | 369| |- alliedVictory: false | | 369|+ "alliedVictory": false | 370| 370| }); | 371| 371| | 372| 372| TS_ASSERT_UNEVAL_EQUALS(cmp.GetExtendedSimulationState(), { | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'r'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 374| 374| { | 375| 375| "name": "Player 1", | 376| 376| "civ": "gaia", | 377| |- "color": { "r":1, "g":1, "b":1, "a":1 }, | | 377|+ "color": { "r": 1, "g":1, "b":1, "a":1 }, | 378| 378| "controlsAll": false, | 379| 379| "popCount": 10, | 380| 380| "popLimit": 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'g'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 374| 374| { | 375| 375| "name": "Player 1", | 376| 376| "civ": "gaia", | 377| |- "color": { "r":1, "g":1, "b":1, "a":1 }, | | 377|+ "color": { "r":1, "g": 1, "b":1, "a":1 }, | 378| 378| "controlsAll": false, | 379| 379| "popCount": 10, | 380| 380| "popLimit": 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'b'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 374| 374| { | 375| 375| "name": "Player 1", | 376| 376| "civ": "gaia", | 377| |- "color": { "r":1, "g":1, "b":1, "a":1 }, | | 377|+ "color": { "r":1, "g":1, "b": 1, "a":1 }, | 378| 378| "controlsAll": false, | 379| 379| "popCount": 10, | 380| 380| "popLimit": 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'a'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 374| 374| { | 375| 375| "name": "Player 1", | 376| 376| "civ": "gaia", | 377| |- "color": { "r":1, "g":1, "b":1, "a":1 }, | | 377|+ "color": { "r":1, "g":1, "b":1, "a": 1 }, | 378| 378| "controlsAll": false, | 379| 379| "popCount": 10, | 380| 380| "popLimit": 20, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 396| 396| "isMutualAlly": [false, false], | 397| 397| "isNeutral": [false, false], | 398| 398| "isEnemy": [true, true], | 399| |- "entityLimits": {"Foo": 10}, | | 399|+ "entityLimits": { "Foo": 10}, | 400| 400| "entityCounts": {"Foo": 5}, | 401| 401| "entityLimitChangers": {"Foo": {}}, | 402| 402| "researchQueued": new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 396| 396| "isMutualAlly": [false, false], | 397| 397| "isNeutral": [false, false], | 398| 398| "isEnemy": [true, true], | 399| |- "entityLimits": {"Foo": 10}, | | 399|+ "entityLimits": {"Foo": 10 }, | 400| 400| "entityCounts": {"Foo": 5}, | 401| 401| "entityLimitChangers": {"Foo": {}}, | 402| 402| "researchQueued": new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 397| 397| "isNeutral": [false, false], | 398| 398| "isEnemy": [true, true], | 399| 399| "entityLimits": {"Foo": 10}, | 400| |- "entityCounts": {"Foo": 5}, | | 400|+ "entityCounts": { "Foo": 5}, | 401| 401| "entityLimitChangers": {"Foo": {}}, | 402| 402| "researchQueued": new Map(), | 403| 403| "researchStarted": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 397| 397| "isNeutral": [false, false], | 398| 398| "isEnemy": [true, true], | 399| 399| "entityLimits": {"Foo": 10}, | 400| |- "entityCounts": {"Foo": 5}, | | 400|+ "entityCounts": {"Foo": 5 }, | 401| 401| "entityLimitChangers": {"Foo": {}}, | 402| 402| "researchQueued": new Map(), | 403| 403| "researchStarted": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 398| 398| "isEnemy": [true, true], | 399| 399| "entityLimits": {"Foo": 10}, | 400| 400| "entityCounts": {"Foo": 5}, | 401| |- "entityLimitChangers": {"Foo": {}}, | | 401|+ "entityLimitChangers": { "Foo": {}}, | 402| 402| "researchQueued": new Map(), | 403| 403| "researchStarted": new Set(), | 404| 404| "researchedTechs": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 398| 398| "isEnemy": [true, true], | 399| 399| "entityLimits": {"Foo": 10}, | 400| 400| "entityCounts": {"Foo": 5}, | 401| |- "entityLimitChangers": {"Foo": {}}, | | 401|+ "entityLimitChangers": {"Foo": {} }, | 402| 402| "researchQueued": new Map(), | 403| 403| "researchStarted": new Set(), | 404| 404| "researchedTechs": new Set(), | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'r'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 446| 446| { | 447| 447| "name": "Player 2", | 448| 448| "civ": "mace", | 449| |- "color": { "r":1, "g":0, "b":0, "a":1 }, | | 449|+ "color": { "r": 1, "g":0, "b":0, "a":1 }, | 450| 450| "controlsAll": true, | 451| 451| "popCount": 40, | 452| 452| "popLimit": 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'g'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 446| 446| { | 447| 447| "name": "Player 2", | 448| 448| "civ": "mace", | 449| |- "color": { "r":1, "g":0, "b":0, "a":1 }, | | 449|+ "color": { "r":1, "g": 0, "b":0, "a":1 }, | 450| 450| "controlsAll": true, | 451| 451| "popCount": 40, | 452| 452| "popLimit": 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'b'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 446| 446| { | 447| 447| "name": "Player 2", | 448| 448| "civ": "mace", | 449| |- "color": { "r":1, "g":0, "b":0, "a":1 }, | | 449|+ "color": { "r":1, "g":0, "b": 0, "a":1 }, | 450| 450| "controlsAll": true, | 451| 451| "popCount": 40, | 452| 452| "popLimit": 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'a'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 446| 446| { | 447| 447| "name": "Player 2", | 448| 448| "civ": "mace", | 449| |- "color": { "r":1, "g":0, "b":0, "a":1 }, | | 449|+ "color": { "r":1, "g":0, "b":0, "a": 1 }, | 450| 450| "controlsAll": true, | 451| 451| "popCount": 40, | 452| 452| "popLimit": 30, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 468| 468| "isMutualAlly": [false, false], | 469| 469| "isNeutral": [false, false], | 470| 470| "isEnemy": [false, false], | 471| |- "entityLimits": {"Bar": 20}, | | 471|+ "entityLimits": { "Bar": 20}, | 472| 472| "entityCounts": {"Bar": 0}, | 473| 473| "entityLimitChangers": {"Bar": {}}, | 474| 474| "researchQueued": new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 468| 468| "isMutualAlly": [false, false], | 469| 469| "isNeutral": [false, false], | 470| 470| "isEnemy": [false, false], | 471| |- "entityLimits": {"Bar": 20}, | | 471|+ "entityLimits": {"Bar": 20 }, | 472| 472| "entityCounts": {"Bar": 0}, | 473| 473| "entityLimitChangers": {"Bar": {}}, | 474| 474| "researchQueued": new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 469| 469| "isNeutral": [false, false], | 470| 470| "isEnemy": [false, false], | 471| 471| "entityLimits": {"Bar": 20}, | 472| |- "entityCounts": {"Bar": 0}, | | 472|+ "entityCounts": { "Bar": 0}, | 473| 473| "entityLimitChangers": {"Bar": {}}, | 474| 474| "researchQueued": new Map(), | 475| 475| "researchStarted": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 469| 469| "isNeutral": [false, false], | 470| 470| "isEnemy": [false, false], | 471| 471| "entityLimits": {"Bar": 20}, | 472| |- "entityCounts": {"Bar": 0}, | | 472|+ "entityCounts": {"Bar": 0 }, | 473| 473| "entityLimitChangers": {"Bar": {}}, | 474| 474| "researchQueued": new Map(), | 475| 475| "researchStarted": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 470| 470| "isEnemy": [false, false], | 471| 471| "entityLimits": {"Bar": 20}, | 472| 472| "entityCounts": {"Bar": 0}, | 473| |- "entityLimitChangers": {"Bar": {}}, | | 473|+ "entityLimitChangers": { "Bar": {}}, | 474| 474| "researchQueued": new Map(), | 475| 475| "researchStarted": new Set(), | 476| 476| "researchedTechs": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 470| 470| "isEnemy": [false, false], | 471| 471| "entityLimits": {"Bar": 20}, | 472| 472| "entityCounts": {"Bar": 0}, | 473| |- "entityLimitChangers": {"Bar": {}}, | | 473|+ "entityLimitChangers": {"Bar": {} }, | 474| 474| "researchQueued": new Map(), | 475| 475| "researchStarted": new Set(), | 476| 476| "researchedTechs": new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetEntitiesList' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 524| 524| | 525| 525| | 526| 526| AddMock(10, IID_Builder, { | 527| |- GetEntitiesList: function() { | | 527|+ "GetEntitiesList": function() { | 528| 528| return ["test1", "test2"]; | 529| 529| }, | 530| 530| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetHitpoints' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 530| 530| }); | 531| 531| | 532| 532| AddMock(10, IID_Health, { | 533| |- GetHitpoints: function() { return 50; }, | | 533|+ "GetHitpoints": function() { return 50; }, | 534| 534| GetMaxHitpoints: function() { return 60; }, | 535| 535| IsRepairable: function() { return false; }, | 536| 536| IsUnhealable: function() { return false; } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetMaxHitpoints' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 531| 531| | 532| 532| AddMock(10, IID_Health, { | 533| 533| GetHitpoints: function() { return 50; }, | 534| |- GetMaxHitpoints: function() { return 60; }, | | 534|+ "GetMaxHitpoints": function() { return 60; }, | 535| 535| IsRepairable: function() { return false; }, | 536| 536| IsUnhealable: function() { return false; } | 537| 537| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsRepairable' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 532| 532| AddMock(10, IID_Health, { | 533| 533| GetHitpoints: function() { return 50; }, | 534| 534| GetMaxHitpoints: function() { return 60; }, | 535| |- IsRepairable: function() { return false; }, | | 535|+ "IsRepairable": function() { return false; }, | 536| 536| IsUnhealable: function() { return false; } | 537| 537| }); | 538| 538| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsUnhealable' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 533| 533| GetHitpoints: function() { return 50; }, | 534| 534| GetMaxHitpoints: function() { return 60; }, | 535| 535| IsRepairable: function() { return false; }, | 536| |- IsUnhealable: function() { return false; } | | 536|+ "IsUnhealable": function() { return false; } | 537| 537| }); | 538| 538| | 539| 539| AddMock(10, IID_Identity, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetClassesList' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 537| 537| }); | 538| 538| | 539| 539| AddMock(10, IID_Identity, { | 540| |- GetClassesList: function() { return ["class1", "class2"]; }, | | 540|+ "GetClassesList": function() { return ["class1", "class2"]; }, | 541| 541| GetVisibleClassesList: function() { return ["class3", "class4"]; }, | 542| 542| GetRank: function() { return "foo"; }, | 543| 543| GetSelectionGroupName: function() { return "Selection Group Name"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetVisibleClassesList' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 538| 538| | 539| 539| AddMock(10, IID_Identity, { | 540| 540| GetClassesList: function() { return ["class1", "class2"]; }, | 541| |- GetVisibleClassesList: function() { return ["class3", "class4"]; }, | | 541|+ "GetVisibleClassesList": function() { return ["class3", "class4"]; }, | 542| 542| GetRank: function() { return "foo"; }, | 543| 543| GetSelectionGroupName: function() { return "Selection Group Name"; }, | 544| 544| HasClass: function() { return true; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetRank' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 539| 539| AddMock(10, IID_Identity, { | 540| 540| GetClassesList: function() { return ["class1", "class2"]; }, | 541| 541| GetVisibleClassesList: function() { return ["class3", "class4"]; }, | 542| |- GetRank: function() { return "foo"; }, | | 542|+ "GetRank": function() { return "foo"; }, | 543| 543| GetSelectionGroupName: function() { return "Selection Group Name"; }, | 544| 544| HasClass: function() { return true; }, | 545| 545| IsUndeletable: function() { return false; } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSelectionGroupName' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 540| 540| GetClassesList: function() { return ["class1", "class2"]; }, | 541| 541| GetVisibleClassesList: function() { return ["class3", "class4"]; }, | 542| 542| GetRank: function() { return "foo"; }, | 543| |- GetSelectionGroupName: function() { return "Selection Group Name"; }, | | 543|+ "GetSelectionGroupName": function() { return "Selection Group Name"; }, | 544| 544| HasClass: function() { return true; }, | 545| 545| IsUndeletable: function() { return false; } | 546| 546| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasClass' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 541| 541| GetVisibleClassesList: function() { return ["class3", "class4"]; }, | 542| 542| GetRank: function() { return "foo"; }, | 543| 543| GetSelectionGroupName: function() { return "Selection Group Name"; }, | 544| |- HasClass: function() { return true; }, | | 544|+ "HasClass": function() { return true; }, | 545| 545| IsUndeletable: function() { return false; } | 546| 546| }); | 547| 547| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsUndeletable' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 542| 542| GetRank: function() { return "foo"; }, | 543| 543| GetSelectionGroupName: function() { return "Selection Group Name"; }, | 544| 544| HasClass: function() { return true; }, | 545| |- IsUndeletable: function() { return false; } | | 545|+ "IsUndeletable": function() { return false; } | 546| 546| }); | 547| 547| | 548| 548| AddMock(10, IID_Position, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTurretParent' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 546| 546| }); | 547| 547| | 548| 548| AddMock(10, IID_Position, { | 549| |- GetTurretParent: function() {return INVALID_ENTITY;}, | | 549|+ "GetTurretParent": function() {return INVALID_ENTITY;}, | 550| 550| GetPosition: function() { | 551| 551| return {x:1, y:2, z:3}; | 552| 552| }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPosition' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 547| 547| | 548| 548| AddMock(10, IID_Position, { | 549| 549| GetTurretParent: function() {return INVALID_ENTITY;}, | 550| |- GetPosition: function() { | | 550|+ "GetPosition": function() { | 551| 551| return {x:1, y:2, z:3}; | 552| 552| }, | 553| 553| IsInWorld: function() { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 548| 548| AddMock(10, IID_Position, { | 549| 549| GetTurretParent: function() {return INVALID_ENTITY;}, | 550| 550| GetPosition: function() { | 551| |- return {x:1, y:2, z:3}; | | 551|+ return { x:1, y:2, z:3}; | 552| 552| }, | 553| 553| IsInWorld: function() { | 554| 554| return true; | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'x' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 548| 548| AddMock(10, IID_Position, { | 549| 549| GetTurretParent: function() {return INVALID_ENTITY;}, | 550| 550| GetPosition: function() { | 551| |- return {x:1, y:2, z:3}; | | 551|+ return {"x":1, y:2, z:3}; | 552| 552| }, | 553| 553| IsInWorld: function() { | 554| 554| return true; | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'x'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 548| 548| AddMock(10, IID_Position, { | 549| 549| GetTurretParent: function() {return INVALID_ENTITY;}, | 550| 550| GetPosition: function() { | 551| |- return {x:1, y:2, z:3}; | | 551|+ return {x: 1, y:2, z:3}; | 552| 552| }, | 553| 553| IsInWorld: function() { | 554| 554| return true; | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'y' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 548| 548| AddMock(10, IID_Position, { | 549| 549| GetTurretParent: function() {return INVALID_ENTITY;}, | 550| 550| GetPosition: function() { | 551| |- return {x:1, y:2, z:3}; | | 551|+ return {x:1, "y":2, z:3}; | 552| 552| }, | 553| 553| IsInWorld: function() { | 554| 554| return true; | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'y'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 548| 548| AddMock(10, IID_Position, { | 549| 549| GetTurretParent: function() {return INVALID_ENTITY;}, | 550| 550| GetPosition: function() { | 551| |- return {x:1, y:2, z:3}; | | 551|+ return {x:1, y: 2, z:3}; | 552| 552| }, | 553| 553| IsInWorld: function() { | 554| 554| return true; | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'z' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 548| 548| AddMock(10, IID_Position, { | 549| 549| GetTurretParent: function() {return INVALID_ENTITY;}, | 550| 550| GetPosition: function() { | 551| |- return {x:1, y:2, z:3}; | | 551|+ return {x:1, y:2, "z":3}; | 552| 552| }, | 553| 553| IsInWorld: function() { | 554| 554| return true; | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'z'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 548| 548| AddMock(10, IID_Position, { | 549| 549| GetTurretParent: function() {return INVALID_ENTITY;}, | 550| 550| GetPosition: function() { | 551| |- return {x:1, y:2, z:3}; | | 551|+ return {x:1, y:2, z: 3}; | 552| 552| }, | 553| 553| IsInWorld: function() { | 554| 554| return true; | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 548| 548| AddMock(10, IID_Position, { | 549| 549| GetTurretParent: function() {return INVALID_ENTITY;}, | 550| 550| GetPosition: function() { | 551| |- return {x:1, y:2, z:3}; | | 551|+ return {x:1, y:2, z:3 }; | 552| 552| }, | 553| 553| IsInWorld: function() { | 554| 554| return true; | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsInWorld' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 550| 550| GetPosition: function() { | 551| 551| return {x:1, y:2, z:3}; | 552| 552| }, | 553| |- IsInWorld: function() { | | 553|+ "IsInWorld": function() { | 554| 554| return true; | 555| 555| } | 556| 556| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 574| 574| "selectionGroupName": "Selection Group Name", | 575| 575| "canDelete": true | 576| 576| }, | 577| |- "position": {x:1, y:2, z:3}, | | 577|+ "position": { x:1, y:2, z:3}, | 578| 578| "hitpoints": 50, | 579| 579| "maxHitpoints": 60, | 580| 580| "needsRepair": false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'x' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 574| 574| "selectionGroupName": "Selection Group Name", | 575| 575| "canDelete": true | 576| 576| }, | 577| |- "position": {x:1, y:2, z:3}, | | 577|+ "position": {"x":1, y:2, z:3}, | 578| 578| "hitpoints": 50, | 579| 579| "maxHitpoints": 60, | 580| 580| "needsRepair": false, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'x'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 574| 574| "selectionGroupName": "Selection Group Name", | 575| 575| "canDelete": true | 576| 576| }, | 577| |- "position": {x:1, y:2, z:3}, | | 577|+ "position": {x: 1, y:2, z:3}, | 578| 578| "hitpoints": 50, | 579| 579| "maxHitpoints": 60, | 580| 580| "needsRepair": false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'y' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 574| 574| "selectionGroupName": "Selection Group Name", | 575| 575| "canDelete": true | 576| 576| }, | 577| |- "position": {x:1, y:2, z:3}, | | 577|+ "position": {x:1, "y":2, z:3}, | 578| 578| "hitpoints": 50, | 579| 579| "maxHitpoints": 60, | 580| 580| "needsRepair": false, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'y'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 574| 574| "selectionGroupName": "Selection Group Name", | 575| 575| "canDelete": true | 576| 576| }, | 577| |- "position": {x:1, y:2, z:3}, | | 577|+ "position": {x:1, y: 2, z:3}, | 578| 578| "hitpoints": 50, | 579| 579| "maxHitpoints": 60, | 580| 580| "needsRepair": false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'z' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 574| 574| "selectionGroupName": "Selection Group Name", | 575| 575| "canDelete": true | 576| 576| }, | 577| |- "position": {x:1, y:2, z:3}, | | 577|+ "position": {x:1, y:2, "z":3}, | 578| 578| "hitpoints": 50, | 579| 579| "maxHitpoints": 60, | 580| 580| "needsRepair": false, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'z'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 574| 574| "selectionGroupName": "Selection Group Name", | 575| 575| "canDelete": true | 576| 576| }, | 577| |- "position": {x:1, y:2, z:3}, | | 577|+ "position": {x:1, y:2, z: 3}, | 578| 578| "hitpoints": 50, | 579| 579| "maxHitpoints": 60, | 580| 580| "needsRepair": false, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 574| 574| "selectionGroupName": "Selection Group Name", | 575| 575| "canDelete": true | 576| 576| }, | 577| |- "position": {x:1, y:2, z:3}, | | 577|+ "position": {x:1, y:2, z:3 }, | 578| 578| "hitpoints": 50, | 579| 579| "maxHitpoints": 60, | 580| 580| "needsRepair": false, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'isBarterMarket'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 581| 581| "needsHeal": true, | 582| 582| "builder": true, | 583| 583| "visibility": "visible", | 584| |- "isBarterMarket":true, | | 584|+ "isBarterMarket": true, | 585| 585| "resourceTrickle": { | 586| 586| "interval": 1250, | 587| 587| "rates": { "food": 2, "wood": 3, "stone": 5, "metal": 9 } | | [NORMAL] ESLintBear (semi): | | Missing semicolon. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | 342| 342| if (cmpGarrisonable) | 343| 343| ret.canGarrison = { | 344| 344| "size": cmpGarrisonable.GetSize() | 345| |- } | | 345|+ }; | 346| 346| | 347| 347| let cmpUnitAI = Engine.QueryInterface(ent, IID_UnitAI); | 348| 348| if (cmpUnitAI) | | [NORMAL] ESLintBear (indent): | | Expected indentation of 2 tabs but found 3. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | 800| 800| updateEntityColor(data.showAllStatusBars && (i == player || player == -1) ? | 801| 801| [IID_Minimap, IID_RangeOverlayRenderer, IID_RallyPointRenderer, IID_StatusBars] : | 802| 802| [IID_Minimap, IID_RangeOverlayRenderer, IID_RallyPointRenderer], | 803| |- cmpRangeManager.GetEntitiesByPlayer(i)); | | 803|+ cmpRangeManager.GetEntitiesByPlayer(i)); | 804| 804| } | 805| 805| updateEntityColor([IID_Selectable, IID_StatusBars], data.selected); | 806| 806| Engine.QueryInterface(SYSTEM_ENTITY, IID_TerritoryManager).UpdateColors(); | | [NORMAL] ESLintBear (indent): | | Expected indentation of 5 tabs but found 6. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js |1633|1633| { |1634|1634| minDist2 = dist2; |1635|1635| minDistEntitySnapData = { |1636| |- "x": pos.x, | |1636|+ "x": pos.x, |1637|1637| "z": pos.z, |1638|1638| "angle": cmpPosition.GetRotation().y, |1639|1639| "ent": ent | | [NORMAL] ESLintBear (indent): | | Expected indentation of 5 tabs but found 6. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js |1634|1634| minDist2 = dist2; |1635|1635| minDistEntitySnapData = { |1636|1636| "x": pos.x, |1637| |- "z": pos.z, | |1637|+ "z": pos.z, |1638|1638| "angle": cmpPosition.GetRotation().y, |1639|1639| "ent": ent |1640|1640| }; | | [NORMAL] ESLintBear (indent): | | Expected indentation of 5 tabs but found 6. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js |1635|1635| minDistEntitySnapData = { |1636|1636| "x": pos.x, |1637|1637| "z": pos.z, |1638| |- "angle": cmpPosition.GetRotation().y, | |1638|+ "angle": cmpPosition.GetRotation().y, |1639|1639| "ent": ent |1640|1640| }; |1641|1641| } | | [NORMAL] ESLintBear (indent): | | Expected indentation of 5 tabs but found 6. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js |1636|1636| "x": pos.x, |1637|1637| "z": pos.z, |1638|1638| "angle": cmpPosition.GetRotation().y, |1639| |- "ent": ent | |1639|+ "ent": ent |1640|1640| }; |1641|1641| } |1642|1642| } binaries/data/mods/public/simulation/components/GuiInterface.js | 345| » » } | | [NORMAL] JSHintBear: | | Missing semicolon. binaries/data/mods/public/simulation/components/AlertRaiser.js | 123| » » let·units·=·cmpGarrisonHolder.GetEntities().filter(ent·=>·{ | | [NORMAL] ESLintBear (no-shadow): | | 'units' is already declared in the upper scope. binaries/data/mods/public/gui/session/unit_actions.js | 557| » » » switch·(tradingDetails.type) | | [NORMAL] ESLintBear (default-case): | | Expected a default case. | | [NORMAL] ESLintBear (indent): | | Expected indentation of 2 tabs but found 3. |----| | /zpool0/trunk/binaries/data/mods/public/gui/common/tooltips.js | |++++| /zpool0/trunk/binaries/data/mods/public/gui/common/tooltips.js | 406| 406| function getRepairTimeTooltip(entState) | 407| 407| { | 408| 408| return sprintf(translate("%(label)s %(details)s"), { | 409| |- "label": headerFont(translate("Number of repairers:")), | | 409|+ "label": headerFont(translate("Number of repairers:")), | 410| 410| "details": entState.repairable.numBuilders | 411| 411| }) + "\n" + (entState.repairable.numBuilders ? | 412| 412| sprintf(translatePlural( | | [NORMAL] ESLintBear (indent): | | Expected indentation of 2 tabs but found 3. |----| | /zpool0/trunk/binaries/data/mods/public/gui/common/tooltips.js | |++++| /zpool0/trunk/binaries/data/mods/public/gui/common/tooltips.js | 407| 407| { | 408| 408| return sprintf(translate("%(label)s %(details)s"), { | 409| 409| "label": headerFont(translate("Number of repairers:")), | 410| |- "details": entState.repairable.numBuilders | | 410|+ "details": entState.repairable.numBuilders | 411| 411| }) + "\n" + (entState.repairable.numBuilders ? | 412| 412| sprintf(translatePlural( | 413| 413| "Add another worker to speed up the repairs by %(second)s second.", | | [NORMAL] ESLintBear (indent): | | Expected indentation of 1 tab but found 2. |----| | /zpool0/trunk/binaries/data/mods/public/gui/common/tooltips.js | |++++| /zpool0/trunk/binaries/data/mods/public/gui/common/tooltips.js | 408| 408| return sprintf(translate("%(label)s %(details)s"), { | 409| 409| "label": headerFont(translate("Number of repairers:")), | 410| 410| "details": entState.repairable.numBuilders | 411| |- }) + "\n" + (entState.repairable.numBuilders ? | | 411|+ }) + "\n" + (entState.repairable.numBuilders ? | 412| 412| sprintf(translatePlural( | 413| 413| "Add another worker to speed up the repairs by %(second)s second.", | 414| 414| "Add another worker to speed up the repairs by %(second)s seconds.", | | [NORMAL] ESLintBear (indent): | | Expected indentation of 2 tabs but found 3. |----| | /zpool0/trunk/binaries/data/mods/public/gui/common/tooltips.js | |++++| /zpool0/trunk/binaries/data/mods/public/gui/common/tooltips.js | 428| 428| function getBuildTimeTooltip(entState) | 429| 429| { | 430| 430| return sprintf(translate("%(label)s %(details)s"), { | 431| |- "label": headerFont(translate("Number of builders:")), | | 431|+ "label": headerFont(translate("Number of builders:")), | 432| 432| "details": entState.foundation.numBuilders | 433| 433| }) + "\n" + (entState.foundation.numBuilders ? | 434| 434| sprintf(translatePlural( | | [NORMAL] ESLintBear (indent): | | Expected indentation of 2 tabs but found 3. |----| | /zpool0/trunk/binaries/data/mods/public/gui/common/tooltips.js | |++++| /zpool0/trunk/binaries/data/mods/public/gui/common/tooltips.js | 429| 429| { | 430| 430| return sprintf(translate("%(label)s %(details)s"), { | 431| 431| "label": headerFont(translate("Number of builders:")), | 432| |- "details": entState.foundation.numBuilders | | 432|+ "details": entState.foundation.numBuilders | 433| 433| }) + "\n" + (entState.foundation.numBuilders ? | 434| 434| sprintf(translatePlural( | 435| 435| "Add another worker to speed up the construction by %(second)s second.", | | [NORMAL] ESLintBear (indent): | | Expected indentation of 1 tab but found 2. |----| | /zpool0/trunk/binaries/data/mods/public/gui/common/tooltips.js | |++++| /zpool0/trunk/binaries/data/mods/public/gui/common/tooltips.js | 430| 430| return sprintf(translate("%(label)s %(details)s"), { | 431| 431| "label": headerFont(translate("Number of builders:")), | 432| 432| "details": entState.foundation.numBuilders | 433| |- }) + "\n" + (entState.foundation.numBuilders ? | | 433|+ }) + "\n" + (entState.foundation.numBuilders ? | 434| 434| sprintf(translatePlural( | 435| 435| "Add another worker to speed up the construction by %(second)s second.", | 436| 436| "Add another worker to speed up the construction by %(second)s seconds.", Executing section cli... Link to build: https://jenkins.wildfiregames.com/job/docker-differential/315/display/redirect Comment Actions Successful build - Chance fights ever on the side of the prudent. Link to build: https://jenkins.wildfiregames.com/job/vs2015-differential/361/display/redirect Comment Actions Successful build - Chance fights ever on the side of the prudent. Linter detected issues: Executing section Source... Executing section JS... | | [NORMAL] ESLintBear (indent): | | Expected indentation of 3 tabs but found 4. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | 75| 75| | 76| 76| if (i == 35) | 77| 77| AddMock(i, IID_Garrisonable, { | 78| |- "GetSize": () => 9 | | 78|+ "GetSize": () => 9 | 79| 79| }); | 80| 80| else | 81| 81| AddMock(i, IID_Garrisonable, { | | [NORMAL] ESLintBear (indent): | | Expected indentation of 2 tabs but found 3. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | 76| 76| if (i == 35) | 77| 77| AddMock(i, IID_Garrisonable, { | 78| 78| "GetSize": () => 9 | 79| |- }); | | 79|+ }); | 80| 80| else | 81| 81| AddMock(i, IID_Garrisonable, { | 82| 82| "GetSize": () => 1 | | [NORMAL] ESLintBear (indent): | | Expected indentation of 3 tabs but found 4. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | 79| 79| }); | 80| 80| else | 81| 81| AddMock(i, IID_Garrisonable, { | 82| |- "GetSize": () => 1 | | 82|+ "GetSize": () => 1 | 83| 83| }); | 84| 84| | 85| 85| AddMock(i, IID_Position, { | | [NORMAL] ESLintBear (indent): | | Expected indentation of 2 tabs but found 3. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | 80| 80| else | 81| 81| AddMock(i, IID_Garrisonable, { | 82| 82| "GetSize": () => 1 | 83| |- }); | | 83|+ }); | 84| 84| | 85| 85| AddMock(i, IID_Position, { | 86| 86| "GetHeightOffset": () => 0, | | [NORMAL] ESLintBear (semi): | | Missing semicolon. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | 367| 367| if (cmpGarrisonable) | 368| 368| ret.garrisonable = { | 369| 369| "size": cmpGarrisonable.GetSize() | 370| |- } | | 370|+ }; | 371| 371| | 372| 372| let cmpUnitAI = Engine.QueryInterface(ent, IID_UnitAI); | 373| 373| if (cmpUnitAI) | | [NORMAL] ESLintBear (indent): | | Expected indentation of 2 tabs but found 3. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | 825| 825| updateEntityColor(data.showAllStatusBars && (i == player || player == -1) ? | 826| 826| [IID_Minimap, IID_RangeOverlayRenderer, IID_RallyPointRenderer, IID_StatusBars] : | 827| 827| [IID_Minimap, IID_RangeOverlayRenderer, IID_RallyPointRenderer], | 828| |- cmpRangeManager.GetEntitiesByPlayer(i)); | | 828|+ cmpRangeManager.GetEntitiesByPlayer(i)); | 829| 829| } | 830| 830| updateEntityColor([IID_Selectable, IID_StatusBars], data.selected); | 831| 831| Engine.QueryInterface(SYSTEM_ENTITY, IID_TerritoryManager).UpdateColors(); | | [NORMAL] ESLintBear (indent): | | Expected indentation of 5 tabs but found 6. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js |1658|1658| { |1659|1659| minDist2 = dist2; |1660|1660| minDistEntitySnapData = { |1661| |- "x": pos.x, | |1661|+ "x": pos.x, |1662|1662| "z": pos.z, |1663|1663| "angle": cmpPosition.GetRotation().y, |1664|1664| "ent": ent | | [NORMAL] ESLintBear (indent): | | Expected indentation of 5 tabs but found 6. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js |1659|1659| minDist2 = dist2; |1660|1660| minDistEntitySnapData = { |1661|1661| "x": pos.x, |1662| |- "z": pos.z, | |1662|+ "z": pos.z, |1663|1663| "angle": cmpPosition.GetRotation().y, |1664|1664| "ent": ent |1665|1665| }; | | [NORMAL] ESLintBear (indent): | | Expected indentation of 5 tabs but found 6. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js |1660|1660| minDistEntitySnapData = { |1661|1661| "x": pos.x, |1662|1662| "z": pos.z, |1663| |- "angle": cmpPosition.GetRotation().y, | |1663|+ "angle": cmpPosition.GetRotation().y, |1664|1664| "ent": ent |1665|1665| }; |1666|1666| } | | [NORMAL] ESLintBear (indent): | | Expected indentation of 5 tabs but found 6. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js |1661|1661| "x": pos.x, |1662|1662| "z": pos.z, |1663|1663| "angle": cmpPosition.GetRotation().y, |1664| |- "ent": ent | |1664|+ "ent": ent |1665|1665| }; |1666|1666| } |1667|1667| } binaries/data/mods/public/simulation/components/GuiInterface.js | 370| » » } | | [NORMAL] JSHintBear: | | Missing semicolon. binaries/data/mods/public/simulation/ai/common-api/entity.js | 814| » » if·(this.position()·!==·undefined)·{ | | [NORMAL] ESLintBear (brace-rules/brace-on-same-line): | | Opening curly brace appears on the same line as controlling statement. binaries/data/mods/public/simulation/ai/common-api/entity.js | 831| » » if·(this.position()·!==·undefined·&&·unitToFleeFrom.position()·!==·undefined)·{ | | [NORMAL] ESLintBear (brace-rules/brace-on-same-line): | | Opening curly brace appears on the same line as controlling statement. binaries/data/mods/public/simulation/ai/common-api/entity.js | 961| }(API3); | | [MAJOR] ESLintBear (no-use-before-define): | | 'API3' was used before it was defined. | | [NORMAL] ESLintBear (operator-linebreak): | | '||' should be placed at the end of the line. |----| | /zpool0/trunk/binaries/data/mods/public/globalscripts/Templates.js | |++++| /zpool0/trunk/binaries/data/mods/public/globalscripts/Templates.js | 87| 87| // If the elements are still strings, split them by space or by '+' | 88| 88| if (typeof sublist == "string") | 89| 89| sublist = sublist.split(/[+\s]+/); | 90| |- if (sublist.every(c => (c[0] == "!" && classes.indexOf(c.substr(1)) == -1) | 91| |- || (c[0] != "!" && classes.indexOf(c) != -1))) | | 90|+ if (sublist.every(c => (c[0] == "!" && classes.indexOf(c.substr(1)) == -1) || | | 91|+ (c[0] != "!" && classes.indexOf(c) != -1))) | 92| 92| return true; | 93| 93| } | 94| 94| binaries/data/mods/public/globalscripts/Templates.js | 91| » » ····················||·(c[0]·!=·"!"·&&·classes.indexOf(c)·!=·-1))) | | [NORMAL] JSHintBear: | | Misleading line break before '||'; readers may interpret this as an expression boundary. | | [NORMAL] ESLintBear (indent): | | Expected indentation of 4 tabs but found 3. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 48| 48| "GetResource": resource => ({ | 49| 49| "aiAnalysisInfluenceGroup": | 50| 50| resource == "food" ? "ignore" : | 51| |- resource == "wood" ? "abundant" : "sparse" | | 51|+ resource == "wood" ? "abundant" : "sparse" | 52| 52| }) | 53| 53| }; | 54| 54| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPrices' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 56| 56| | 57| 57| | 58| 58| AddMock(SYSTEM_ENTITY, IID_Barter, { | 59| |- GetPrices: function() { | | 59|+ "GetPrices": function() { | 60| 60| return { | 61| 61| "buy": { "food": 150 }, | 62| 62| "sell": { "food": 25 } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'PlayerHasMarket' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 62| 62| "sell": { "food": 25 } | 63| 63| }; | 64| 64| }, | 65| |- PlayerHasMarket: function () { return false; } | | 65|+ "PlayerHasMarket": function () { return false; } | 66| 66| }); | 67| 67| | 68| 68| AddMock(SYSTEM_ENTITY, IID_EndGameManager, { | | [NORMAL] ESLintBear (space-before-function-paren): | | Unexpected space before function parentheses. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 62| 62| "sell": { "food": 25 } | 63| 63| }; | 64| 64| }, | 65| |- PlayerHasMarket: function () { return false; } | | 65|+ PlayerHasMarket: function() { return false; } | 66| 66| }); | 67| 67| | 68| 68| AddMock(SYSTEM_ENTITY, IID_EndGameManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetVictoryConditions' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 66| 66| }); | 67| 67| | 68| 68| AddMock(SYSTEM_ENTITY, IID_EndGameManager, { | 69| |- GetVictoryConditions: () => ["conquest", "wonder"], | | 69|+ "GetVictoryConditions": () => ["conquest", "wonder"], | 70| 70| GetAlliedVictory: function() { return false; } | 71| 71| }); | 72| 72| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetAlliedVictory' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 67| 67| | 68| 68| AddMock(SYSTEM_ENTITY, IID_EndGameManager, { | 69| 69| GetVictoryConditions: () => ["conquest", "wonder"], | 70| |- GetAlliedVictory: function() { return false; } | | 70|+ "GetAlliedVictory": function() { return false; } | 71| 71| }); | 72| 72| | 73| 73| AddMock(SYSTEM_ENTITY, IID_PlayerManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetNumPlayers' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 71| 71| }); | 72| 72| | 73| 73| AddMock(SYSTEM_ENTITY, IID_PlayerManager, { | 74| |- GetNumPlayers: function() { return 2; }, | | 74|+ "GetNumPlayers": function() { return 2; }, | 75| 75| GetPlayerByID: function(id) { TS_ASSERT(id === 0 || id === 1); return 100+id; } | 76| 76| }); | 77| 77| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPlayerByID' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 72| 72| | 73| 73| AddMock(SYSTEM_ENTITY, IID_PlayerManager, { | 74| 74| GetNumPlayers: function() { return 2; }, | 75| |- GetPlayerByID: function(id) { TS_ASSERT(id === 0 || id === 1); return 100+id; } | | 75|+ "GetPlayerByID": function(id) { TS_ASSERT(id === 0 || id === 1); return 100+id; } | 76| 76| }); | 77| 77| | 78| 78| AddMock(SYSTEM_ENTITY, IID_RangeManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLosVisibility' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 76| 76| }); | 77| 77| | 78| 78| AddMock(SYSTEM_ENTITY, IID_RangeManager, { | 79| |- GetLosVisibility: function(ent, player) { return "visible"; }, | | 79|+ "GetLosVisibility": function(ent, player) { return "visible"; }, | 80| 80| GetLosCircular: function() { return false; } | 81| 81| }); | 82| 82| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLosCircular' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 77| 77| | 78| 78| AddMock(SYSTEM_ENTITY, IID_RangeManager, { | 79| 79| GetLosVisibility: function(ent, player) { return "visible"; }, | 80| |- GetLosCircular: function() { return false; } | | 80|+ "GetLosCircular": function() { return false; } | 81| 81| }); | 82| 82| | 83| 83| AddMock(SYSTEM_ENTITY, IID_TemplateManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCurrentTemplateName' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 81| 81| }); | 82| 82| | 83| 83| AddMock(SYSTEM_ENTITY, IID_TemplateManager, { | 84| |- GetCurrentTemplateName: function(ent) { return "example"; }, | | 84|+ "GetCurrentTemplateName": function(ent) { return "example"; }, | 85| 85| GetTemplate: function(name) { return ""; } | 86| 86| }); | 87| 87| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTemplate' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 82| 82| | 83| 83| AddMock(SYSTEM_ENTITY, IID_TemplateManager, { | 84| 84| GetCurrentTemplateName: function(ent) { return "example"; }, | 85| |- GetTemplate: function(name) { return ""; } | | 85|+ "GetTemplate": function(name) { return ""; } | 86| 86| }); | 87| 87| | 88| 88| AddMock(SYSTEM_ENTITY, IID_Timer, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTime' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 86| 86| }); | 87| 87| | 88| 88| AddMock(SYSTEM_ENTITY, IID_Timer, { | 89| |- GetTime: function() { return 0; }, | | 89|+ "GetTime": function() { return 0; }, | 90| 90| SetTimeout: function(ent, iid, funcname, time, data) { return 0; } | 91| 91| }); | 92| 92| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'SetTimeout' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 87| 87| | 88| 88| AddMock(SYSTEM_ENTITY, IID_Timer, { | 89| 89| GetTime: function() { return 0; }, | 90| |- SetTimeout: function(ent, iid, funcname, time, data) { return 0; } | | 90|+ "SetTimeout": function(ent, iid, funcname, time, data) { return 0; } | 91| 91| }); | 92| 92| | 93| 93| AddMock(100, IID_Player, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetName' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 91| 91| }); | 92| 92| | 93| 93| AddMock(100, IID_Player, { | 94| |- GetName: function() { return "Player 1"; }, | | 94|+ "GetName": function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| 96| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCiv' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 92| 92| | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| |- GetCiv: function() { return "gaia"; }, | | 95|+ "GetCiv": function() { return "gaia"; }, | 96| 96| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetColor' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 96|+ "GetColor": function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'r' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 96|+ GetColor: function() { return { "r": 1, g: 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'g' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 96|+ GetColor: function() { return { r: 1, "g": 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'b' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 96|+ GetColor: function() { return { r: 1, g: 1, "b": 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'a' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 96|+ GetColor: function() { return { r: 1, g: 1, b: 1, "a": 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 96|+ GetColor: function() { return { r: 1, g: 1, b: 1, a: 1 }; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'CanControlAllUnits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| 96| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 97| |- CanControlAllUnits: function() { return false; }, | | 97|+ "CanControlAllUnits": function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | 100| 100| GetMaxPopulation: function() { return 200; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPopulationCount' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 95| 95| GetCiv: function() { return "gaia"; }, | 96| 96| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| |- GetPopulationCount: function() { return 10; }, | | 98|+ "GetPopulationCount": function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | 100| 100| GetMaxPopulation: function() { return 200; }, | 101| 101| GetResourceCounts: function() { return { food: 100 }; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPopulationLimit' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 96| 96| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| |- GetPopulationLimit: function() { return 20; }, | | 99|+ "GetPopulationLimit": function() { return 20; }, | 100| 100| GetMaxPopulation: function() { return 200; }, | 101| 101| GetResourceCounts: function() { return { food: 100 }; }, | 102| 102| GetPanelEntities: function() { return []; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetMaxPopulation' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | 100| |- GetMaxPopulation: function() { return 200; }, | | 100|+ "GetMaxPopulation": function() { return 200; }, | 101| 101| GetResourceCounts: function() { return { food: 100 }; }, | 102| 102| GetPanelEntities: function() { return []; }, | 103| 103| IsTrainingBlocked: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetResourceCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | 100| 100| GetMaxPopulation: function() { return 200; }, | 101| |- GetResourceCounts: function() { return { food: 100 }; }, | | 101|+ "GetResourceCounts": function() { return { food: 100 }; }, | 102| 102| GetPanelEntities: function() { return []; }, | 103| 103| IsTrainingBlocked: function() { return false; }, | 104| 104| GetState: function() { return "active"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | 100| 100| GetMaxPopulation: function() { return 200; }, | 101| |- GetResourceCounts: function() { return { food: 100 }; }, | | 101|+ GetResourceCounts: function() { return { "food": 100 }; }, | 102| 102| GetPanelEntities: function() { return []; }, | 103| 103| IsTrainingBlocked: function() { return false; }, | 104| 104| GetState: function() { return "active"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPanelEntities' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 99| 99| GetPopulationLimit: function() { return 20; }, | 100| 100| GetMaxPopulation: function() { return 200; }, | 101| 101| GetResourceCounts: function() { return { food: 100 }; }, | 102| |- GetPanelEntities: function() { return []; }, | | 102|+ "GetPanelEntities": function() { return []; }, | 103| 103| IsTrainingBlocked: function() { return false; }, | 104| 104| GetState: function() { return "active"; }, | 105| 105| GetTeam: function() { return -1; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsTrainingBlocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 100| 100| GetMaxPopulation: function() { return 200; }, | 101| 101| GetResourceCounts: function() { return { food: 100 }; }, | 102| 102| GetPanelEntities: function() { return []; }, | 103| |- IsTrainingBlocked: function() { return false; }, | | 103|+ "IsTrainingBlocked": function() { return false; }, | 104| 104| GetState: function() { return "active"; }, | 105| 105| GetTeam: function() { return -1; }, | 106| 106| GetLockTeams: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetState' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 101| 101| GetResourceCounts: function() { return { food: 100 }; }, | 102| 102| GetPanelEntities: function() { return []; }, | 103| 103| IsTrainingBlocked: function() { return false; }, | 104| |- GetState: function() { return "active"; }, | | 104|+ "GetState": function() { return "active"; }, | 105| 105| GetTeam: function() { return -1; }, | 106| 106| GetLockTeams: function() { return false; }, | 107| 107| GetCheatsEnabled: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTeam' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 102| 102| GetPanelEntities: function() { return []; }, | 103| 103| IsTrainingBlocked: function() { return false; }, | 104| 104| GetState: function() { return "active"; }, | 105| |- GetTeam: function() { return -1; }, | | 105|+ "GetTeam": function() { return -1; }, | 106| 106| GetLockTeams: function() { return false; }, | 107| 107| GetCheatsEnabled: function() { return false; }, | 108| 108| GetDiplomacy: function() { return [-1, 1]; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLockTeams' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 103| 103| IsTrainingBlocked: function() { return false; }, | 104| 104| GetState: function() { return "active"; }, | 105| 105| GetTeam: function() { return -1; }, | 106| |- GetLockTeams: function() { return false; }, | | 106|+ "GetLockTeams": function() { return false; }, | 107| 107| GetCheatsEnabled: function() { return false; }, | 108| 108| GetDiplomacy: function() { return [-1, 1]; }, | 109| 109| IsAlly: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCheatsEnabled' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 104| 104| GetState: function() { return "active"; }, | 105| 105| GetTeam: function() { return -1; }, | 106| 106| GetLockTeams: function() { return false; }, | 107| |- GetCheatsEnabled: function() { return false; }, | | 107|+ "GetCheatsEnabled": function() { return false; }, | 108| 108| GetDiplomacy: function() { return [-1, 1]; }, | 109| 109| IsAlly: function() { return false; }, | 110| 110| IsMutualAlly: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDiplomacy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 105| 105| GetTeam: function() { return -1; }, | 106| 106| GetLockTeams: function() { return false; }, | 107| 107| GetCheatsEnabled: function() { return false; }, | 108| |- GetDiplomacy: function() { return [-1, 1]; }, | | 108|+ "GetDiplomacy": function() { return [-1, 1]; }, | 109| 109| IsAlly: function() { return false; }, | 110| 110| IsMutualAlly: function() { return false; }, | 111| 111| IsNeutral: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 106| 106| GetLockTeams: function() { return false; }, | 107| 107| GetCheatsEnabled: function() { return false; }, | 108| 108| GetDiplomacy: function() { return [-1, 1]; }, | 109| |- IsAlly: function() { return false; }, | | 109|+ "IsAlly": function() { return false; }, | 110| 110| IsMutualAlly: function() { return false; }, | 111| 111| IsNeutral: function() { return false; }, | 112| 112| IsEnemy: function() { return true; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsMutualAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 107| 107| GetCheatsEnabled: function() { return false; }, | 108| 108| GetDiplomacy: function() { return [-1, 1]; }, | 109| 109| IsAlly: function() { return false; }, | 110| |- IsMutualAlly: function() { return false; }, | | 110|+ "IsMutualAlly": function() { return false; }, | 111| 111| IsNeutral: function() { return false; }, | 112| 112| IsEnemy: function() { return true; }, | 113| 113| GetDisabledTemplates: function() { return {}; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsNeutral' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 108| 108| GetDiplomacy: function() { return [-1, 1]; }, | 109| 109| IsAlly: function() { return false; }, | 110| 110| IsMutualAlly: function() { return false; }, | 111| |- IsNeutral: function() { return false; }, | | 111|+ "IsNeutral": function() { return false; }, | 112| 112| IsEnemy: function() { return true; }, | 113| 113| GetDisabledTemplates: function() { return {}; }, | 114| 114| GetDisabledTechnologies: function() { return {}; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsEnemy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 109| 109| IsAlly: function() { return false; }, | 110| 110| IsMutualAlly: function() { return false; }, | 111| 111| IsNeutral: function() { return false; }, | 112| |- IsEnemy: function() { return true; }, | | 112|+ "IsEnemy": function() { return true; }, | 113| 113| GetDisabledTemplates: function() { return {}; }, | 114| 114| GetDisabledTechnologies: function() { return {}; }, | 115| 115| GetSpyCostMultiplier: function() { return 1; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDisabledTemplates' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 110| 110| IsMutualAlly: function() { return false; }, | 111| 111| IsNeutral: function() { return false; }, | 112| 112| IsEnemy: function() { return true; }, | 113| |- GetDisabledTemplates: function() { return {}; }, | | 113|+ "GetDisabledTemplates": function() { return {}; }, | 114| 114| GetDisabledTechnologies: function() { return {}; }, | 115| 115| GetSpyCostMultiplier: function() { return 1; }, | 116| 116| HasSharedDropsites: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDisabledTechnologies' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 111| 111| IsNeutral: function() { return false; }, | 112| 112| IsEnemy: function() { return true; }, | 113| 113| GetDisabledTemplates: function() { return {}; }, | 114| |- GetDisabledTechnologies: function() { return {}; }, | | 114|+ "GetDisabledTechnologies": function() { return {}; }, | 115| 115| GetSpyCostMultiplier: function() { return 1; }, | 116| 116| HasSharedDropsites: function() { return false; }, | 117| 117| HasSharedLos: function() { return false; } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSpyCostMultiplier' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 112| 112| IsEnemy: function() { return true; }, | 113| 113| GetDisabledTemplates: function() { return {}; }, | 114| 114| GetDisabledTechnologies: function() { return {}; }, | 115| |- GetSpyCostMultiplier: function() { return 1; }, | | 115|+ "GetSpyCostMultiplier": function() { return 1; }, | 116| 116| HasSharedDropsites: function() { return false; }, | 117| 117| HasSharedLos: function() { return false; } | 118| 118| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasSharedDropsites' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 113| 113| GetDisabledTemplates: function() { return {}; }, | 114| 114| GetDisabledTechnologies: function() { return {}; }, | 115| 115| GetSpyCostMultiplier: function() { return 1; }, | 116| |- HasSharedDropsites: function() { return false; }, | | 116|+ "HasSharedDropsites": function() { return false; }, | 117| 117| HasSharedLos: function() { return false; } | 118| 118| }); | 119| 119| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasSharedLos' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 114| 114| GetDisabledTechnologies: function() { return {}; }, | 115| 115| GetSpyCostMultiplier: function() { return 1; }, | 116| 116| HasSharedDropsites: function() { return false; }, | 117| |- HasSharedLos: function() { return false; } | | 117|+ "HasSharedLos": function() { return false; } | 118| 118| }); | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLimits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 118| 118| }); | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | 121| |- GetLimits: function() { return {"Foo": 10}; }, | | 121|+ "GetLimits": function() { return {"Foo": 10}; }, | 122| 122| GetCounts: function() { return {"Foo": 5}; }, | 123| 123| GetLimitChangers: function() {return {"Foo": {}}; } | 124| 124| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 118| 118| }); | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | 121| |- GetLimits: function() { return {"Foo": 10}; }, | | 121|+ GetLimits: function() { return { "Foo": 10}; }, | 122| 122| GetCounts: function() { return {"Foo": 5}; }, | 123| 123| GetLimitChangers: function() {return {"Foo": {}}; } | 124| 124| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 118| 118| }); | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | 121| |- GetLimits: function() { return {"Foo": 10}; }, | | 121|+ GetLimits: function() { return {"Foo": 10 }; }, | 122| 122| GetCounts: function() { return {"Foo": 5}; }, | 123| 123| GetLimitChangers: function() {return {"Foo": {}}; } | 124| 124| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | 121| 121| GetLimits: function() { return {"Foo": 10}; }, | 122| |- GetCounts: function() { return {"Foo": 5}; }, | | 122|+ "GetCounts": function() { return {"Foo": 5}; }, | 123| 123| GetLimitChangers: function() {return {"Foo": {}}; } | 124| 124| }); | 125| 125| | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | 121| 121| GetLimits: function() { return {"Foo": 10}; }, | 122| |- GetCounts: function() { return {"Foo": 5}; }, | | 122|+ GetCounts: function() { return { "Foo": 5}; }, | 123| 123| GetLimitChangers: function() {return {"Foo": {}}; } | 124| 124| }); | 125| 125| | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | 121| 121| GetLimits: function() { return {"Foo": 10}; }, | 122| |- GetCounts: function() { return {"Foo": 5}; }, | | 122|+ GetCounts: function() { return {"Foo": 5 }; }, | 123| 123| GetLimitChangers: function() {return {"Foo": {}}; } | 124| 124| }); | 125| 125| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLimitChangers' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 120| 120| AddMock(100, IID_EntityLimits, { | 121| 121| GetLimits: function() { return {"Foo": 10}; }, | 122| 122| GetCounts: function() { return {"Foo": 5}; }, | 123| |- GetLimitChangers: function() {return {"Foo": {}}; } | | 123|+ "GetLimitChangers": function() {return {"Foo": {}}; } | 124| 124| }); | 125| 125| | 126| 126| AddMock(100, IID_TechnologyManager, { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 120| 120| AddMock(100, IID_EntityLimits, { | 121| 121| GetLimits: function() { return {"Foo": 10}; }, | 122| 122| GetCounts: function() { return {"Foo": 5}; }, | 123| |- GetLimitChangers: function() {return {"Foo": {}}; } | | 123|+ GetLimitChangers: function() {return { "Foo": {}}; } | 124| 124| }); | 125| 125| | 126| 126| AddMock(100, IID_TechnologyManager, { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 120| 120| AddMock(100, IID_EntityLimits, { | 121| 121| GetLimits: function() { return {"Foo": 10}; }, | 122| 122| GetCounts: function() { return {"Foo": 5}; }, | 123| |- GetLimitChangers: function() {return {"Foo": {}}; } | | 123|+ GetLimitChangers: function() {return {"Foo": {} }; } | 124| 124| }); | 125| 125| | 126| 126| AddMock(100, IID_TechnologyManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetBasicStatistics' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 133| 133| }); | 134| 134| | 135| 135| AddMock(100, IID_StatisticsTracker, { | 136| |- GetBasicStatistics: function() { | | 136|+ "GetBasicStatistics": function() { | 137| 137| return { | 138| 138| "resourcesGathered": { | 139| 139| "food": 100, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSequences' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 145| 145| "percentMapExplored": 10 | 146| 146| }; | 147| 147| }, | 148| |- GetSequences: function() { | | 148|+ "GetSequences": function() { | 149| 149| return { | 150| 150| "unitsTrained": [0, 10], | 151| 151| "unitsLost": [0, 42], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseTrainedUnitsCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 170| 170| "teamPeakPercentOfMapControlled": [0, 10] | 171| 171| }; | 172| 172| }, | 173| |- IncreaseTrainedUnitsCounter: function() { return 1; }, | | 173|+ "IncreaseTrainedUnitsCounter": function() { return 1; }, | 174| 174| IncreaseConstructedBuildingsCounter: function() { return 1; }, | 175| 175| IncreaseBuiltCivCentresCounter: function() { return 1; } | 176| 176| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseConstructedBuildingsCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 171| 171| }; | 172| 172| }, | 173| 173| IncreaseTrainedUnitsCounter: function() { return 1; }, | 174| |- IncreaseConstructedBuildingsCounter: function() { return 1; }, | | 174|+ "IncreaseConstructedBuildingsCounter": function() { return 1; }, | 175| 175| IncreaseBuiltCivCentresCounter: function() { return 1; } | 176| 176| }); | 177| 177| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseBuiltCivCentresCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 172| 172| }, | 173| 173| IncreaseTrainedUnitsCounter: function() { return 1; }, | 174| 174| IncreaseConstructedBuildingsCounter: function() { return 1; }, | 175| |- IncreaseBuiltCivCentresCounter: function() { return 1; } | | 175|+ "IncreaseBuiltCivCentresCounter": function() { return 1; } | 176| 176| }); | 177| 177| | 178| 178| AddMock(101, IID_Player, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetName' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 176| 176| }); | 177| 177| | 178| 178| AddMock(101, IID_Player, { | 179| |- GetName: function() { return "Player 2"; }, | | 179|+ "GetName": function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| 181| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCiv' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 177| 177| | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| |- GetCiv: function() { return "mace"; }, | | 180|+ "GetCiv": function() { return "mace"; }, | 181| 181| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetColor' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 181|+ "GetColor": function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'r' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 181|+ GetColor: function() { return { "r": 1, g: 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'g' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 181|+ GetColor: function() { return { r: 1, "g": 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'b' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 181|+ GetColor: function() { return { r: 1, g: 0, "b": 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'a' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 181|+ GetColor: function() { return { r: 1, g: 0, b: 0, "a": 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 181|+ GetColor: function() { return { r: 1, g: 0, b: 0, a: 1 }; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'CanControlAllUnits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| 181| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 182| |- CanControlAllUnits: function() { return true; }, | | 182|+ "CanControlAllUnits": function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | 185| 185| GetMaxPopulation: function() { return 300; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPopulationCount' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 180| 180| GetCiv: function() { return "mace"; }, | 181| 181| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| |- GetPopulationCount: function() { return 40; }, | | 183|+ "GetPopulationCount": function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | 185| 185| GetMaxPopulation: function() { return 300; }, | 186| 186| GetResourceCounts: function() { return { food: 200 }; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPopulationLimit' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 181| 181| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| |- GetPopulationLimit: function() { return 30; }, | | 184|+ "GetPopulationLimit": function() { return 30; }, | 185| 185| GetMaxPopulation: function() { return 300; }, | 186| 186| GetResourceCounts: function() { return { food: 200 }; }, | 187| 187| GetPanelEntities: function() { return []; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetMaxPopulation' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | 185| |- GetMaxPopulation: function() { return 300; }, | | 185|+ "GetMaxPopulation": function() { return 300; }, | 186| 186| GetResourceCounts: function() { return { food: 200 }; }, | 187| 187| GetPanelEntities: function() { return []; }, | 188| 188| IsTrainingBlocked: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetResourceCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | 185| 185| GetMaxPopulation: function() { return 300; }, | 186| |- GetResourceCounts: function() { return { food: 200 }; }, | | 186|+ "GetResourceCounts": function() { return { food: 200 }; }, | 187| 187| GetPanelEntities: function() { return []; }, | 188| 188| IsTrainingBlocked: function() { return false; }, | 189| 189| GetState: function() { return "active"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | 185| 185| GetMaxPopulation: function() { return 300; }, | 186| |- GetResourceCounts: function() { return { food: 200 }; }, | | 186|+ GetResourceCounts: function() { return { "food": 200 }; }, | 187| 187| GetPanelEntities: function() { return []; }, | 188| 188| IsTrainingBlocked: function() { return false; }, | 189| 189| GetState: function() { return "active"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPanelEntities' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 184| 184| GetPopulationLimit: function() { return 30; }, | 185| 185| GetMaxPopulation: function() { return 300; }, | 186| 186| GetResourceCounts: function() { return { food: 200 }; }, | 187| |- GetPanelEntities: function() { return []; }, | | 187|+ "GetPanelEntities": function() { return []; }, | 188| 188| IsTrainingBlocked: function() { return false; }, | 189| 189| GetState: function() { return "active"; }, | 190| 190| GetTeam: function() { return -1; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsTrainingBlocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 185| 185| GetMaxPopulation: function() { return 300; }, | 186| 186| GetResourceCounts: function() { return { food: 200 }; }, | 187| 187| GetPanelEntities: function() { return []; }, | 188| |- IsTrainingBlocked: function() { return false; }, | | 188|+ "IsTrainingBlocked": function() { return false; }, | 189| 189| GetState: function() { return "active"; }, | 190| 190| GetTeam: function() { return -1; }, | 191| 191| GetLockTeams: function() {return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetState' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 186| 186| GetResourceCounts: function() { return { food: 200 }; }, | 187| 187| GetPanelEntities: function() { return []; }, | 188| 188| IsTrainingBlocked: function() { return false; }, | 189| |- GetState: function() { return "active"; }, | | 189|+ "GetState": function() { return "active"; }, | 190| 190| GetTeam: function() { return -1; }, | 191| 191| GetLockTeams: function() {return false; }, | 192| 192| GetCheatsEnabled: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTeam' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 187| 187| GetPanelEntities: function() { return []; }, | 188| 188| IsTrainingBlocked: function() { return false; }, | 189| 189| GetState: function() { return "active"; }, | 190| |- GetTeam: function() { return -1; }, | | 190|+ "GetTeam": function() { return -1; }, | 191| 191| GetLockTeams: function() {return false; }, | 192| 192| GetCheatsEnabled: function() { return false; }, | 193| 193| GetDiplomacy: function() { return [-1, 1]; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLockTeams' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 188| 188| IsTrainingBlocked: function() { return false; }, | 189| 189| GetState: function() { return "active"; }, | 190| 190| GetTeam: function() { return -1; }, | 191| |- GetLockTeams: function() {return false; }, | | 191|+ "GetLockTeams": function() {return false; }, | 192| 192| GetCheatsEnabled: function() { return false; }, | 193| 193| GetDiplomacy: function() { return [-1, 1]; }, | 194| 194| IsAlly: function() { return true; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCheatsEnabled' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 189| 189| GetState: function() { return "active"; }, | 190| 190| GetTeam: function() { return -1; }, | 191| 191| GetLockTeams: function() {return false; }, | 192| |- GetCheatsEnabled: function() { return false; }, | | 192|+ "GetCheatsEnabled": function() { return false; }, | 193| 193| GetDiplomacy: function() { return [-1, 1]; }, | 194| 194| IsAlly: function() { return true; }, | 195| 195| IsMutualAlly: function() {return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDiplomacy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 190| 190| GetTeam: function() { return -1; }, | 191| 191| GetLockTeams: function() {return false; }, | 192| 192| GetCheatsEnabled: function() { return false; }, | 193| |- GetDiplomacy: function() { return [-1, 1]; }, | | 193|+ "GetDiplomacy": function() { return [-1, 1]; }, | 194| 194| IsAlly: function() { return true; }, | 195| 195| IsMutualAlly: function() {return false; }, | 196| 196| IsNeutral: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 191| 191| GetLockTeams: function() {return false; }, | 192| 192| GetCheatsEnabled: function() { return false; }, | 193| 193| GetDiplomacy: function() { return [-1, 1]; }, | 194| |- IsAlly: function() { return true; }, | | 194|+ "IsAlly": function() { return true; }, | 195| 195| IsMutualAlly: function() {return false; }, | 196| 196| IsNeutral: function() { return false; }, | 197| 197| IsEnemy: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsMutualAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 192| 192| GetCheatsEnabled: function() { return false; }, | 193| 193| GetDiplomacy: function() { return [-1, 1]; }, | 194| 194| IsAlly: function() { return true; }, | 195| |- IsMutualAlly: function() {return false; }, | | 195|+ "IsMutualAlly": function() {return false; }, | 196| 196| IsNeutral: function() { return false; }, | 197| 197| IsEnemy: function() { return false; }, | 198| 198| GetDisabledTemplates: function() { return {}; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsNeutral' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 193| 193| GetDiplomacy: function() { return [-1, 1]; }, | 194| 194| IsAlly: function() { return true; }, | 195| 195| IsMutualAlly: function() {return false; }, | 196| |- IsNeutral: function() { return false; }, | | 196|+ "IsNeutral": function() { return false; }, | 197| 197| IsEnemy: function() { return false; }, | 198| 198| GetDisabledTemplates: function() { return {}; }, | 199| 199| GetDisabledTechnologies: function() { return {}; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsEnemy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 194| 194| IsAlly: function() { return true; }, | 195| 195| IsMutualAlly: function() {return false; }, | 196| 196| IsNeutral: function() { return false; }, | 197| |- IsEnemy: function() { return false; }, | | 197|+ "IsEnemy": function() { return false; }, | 198| 198| GetDisabledTemplates: function() { return {}; }, | 199| 199| GetDisabledTechnologies: function() { return {}; }, | 200| 200| GetSpyCostMultiplier: function() { return 1; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDisabledTemplates' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 195| 195| IsMutualAlly: function() {return false; }, | 196| 196| IsNeutral: function() { return false; }, | 197| 197| IsEnemy: function() { return false; }, | 198| |- GetDisabledTemplates: function() { return {}; }, | | 198|+ "GetDisabledTemplates": function() { return {}; }, | 199| 199| GetDisabledTechnologies: function() { return {}; }, | 200| 200| GetSpyCostMultiplier: function() { return 1; }, | 201| 201| HasSharedDropsites: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDisabledTechnologies' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 196| 196| IsNeutral: function() { return false; }, | 197| 197| IsEnemy: function() { return false; }, | 198| 198| GetDisabledTemplates: function() { return {}; }, | 199| |- GetDisabledTechnologies: function() { return {}; }, | | 199|+ "GetDisabledTechnologies": function() { return {}; }, | 200| 200| GetSpyCostMultiplier: function() { return 1; }, | 201| 201| HasSharedDropsites: function() { return false; }, | 202| 202| HasSharedLos: function() { return false; } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSpyCostMultiplier' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 197| 197| IsEnemy: function() { return false; }, | 198| 198| GetDisabledTemplates: function() { return {}; }, | 199| 199| GetDisabledTechnologies: function() { return {}; }, | 200| |- GetSpyCostMultiplier: function() { return 1; }, | | 200|+ "GetSpyCostMultiplier": function() { return 1; }, | 201| 201| HasSharedDropsites: function() { return false; }, | 202| 202| HasSharedLos: function() { return false; } | 203| 203| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasSharedDropsites' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 198| 198| GetDisabledTemplates: function() { return {}; }, | 199| 199| GetDisabledTechnologies: function() { return {}; }, | 200| 200| GetSpyCostMultiplier: function() { return 1; }, | 201| |- HasSharedDropsites: function() { return false; }, | | 201|+ "HasSharedDropsites": function() { return false; }, | 202| 202| HasSharedLos: function() { return false; } | 203| 203| }); | 204| 204| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasSharedLos' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 199| 199| GetDisabledTechnologies: function() { return {}; }, | 200| 200| GetSpyCostMultiplier: function() { return 1; }, | 201| 201| HasSharedDropsites: function() { return false; }, | 202| |- HasSharedLos: function() { return false; } | | 202|+ "HasSharedLos": function() { return false; } | 203| 203| }); | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLimits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 203| 203| }); | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | 206| |- GetLimits: function() { return {"Bar": 20}; }, | | 206|+ "GetLimits": function() { return {"Bar": 20}; }, | 207| 207| GetCounts: function() { return {"Bar": 0}; }, | 208| 208| GetLimitChangers: function() {return {"Bar": {}}; } | 209| 209| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 203| 203| }); | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | 206| |- GetLimits: function() { return {"Bar": 20}; }, | | 206|+ GetLimits: function() { return { "Bar": 20}; }, | 207| 207| GetCounts: function() { return {"Bar": 0}; }, | 208| 208| GetLimitChangers: function() {return {"Bar": {}}; } | 209| 209| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 203| 203| }); | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | 206| |- GetLimits: function() { return {"Bar": 20}; }, | | 206|+ GetLimits: function() { return {"Bar": 20 }; }, | 207| 207| GetCounts: function() { return {"Bar": 0}; }, | 208| 208| GetLimitChangers: function() {return {"Bar": {}}; } | 209| 209| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | 206| 206| GetLimits: function() { return {"Bar": 20}; }, | 207| |- GetCounts: function() { return {"Bar": 0}; }, | | 207|+ "GetCounts": function() { return {"Bar": 0}; }, | 208| 208| GetLimitChangers: function() {return {"Bar": {}}; } | 209| 209| }); | 210| 210| | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | 206| 206| GetLimits: function() { return {"Bar": 20}; }, | 207| |- GetCounts: function() { return {"Bar": 0}; }, | | 207|+ GetCounts: function() { return { "Bar": 0}; }, | 208| 208| GetLimitChangers: function() {return {"Bar": {}}; } | 209| 209| }); | 210| 210| | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | 206| 206| GetLimits: function() { return {"Bar": 20}; }, | 207| |- GetCounts: function() { return {"Bar": 0}; }, | | 207|+ GetCounts: function() { return {"Bar": 0 }; }, | 208| 208| GetLimitChangers: function() {return {"Bar": {}}; } | 209| 209| }); | 210| 210| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLimitChangers' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 205| 205| AddMock(101, IID_EntityLimits, { | 206| 206| GetLimits: function() { return {"Bar": 20}; }, | 207| 207| GetCounts: function() { return {"Bar": 0}; }, | 208| |- GetLimitChangers: function() {return {"Bar": {}}; } | | 208|+ "GetLimitChangers": function() {return {"Bar": {}}; } | 209| 209| }); | 210| 210| | 211| 211| AddMock(101, IID_TechnologyManager, { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 205| 205| AddMock(101, IID_EntityLimits, { | 206| 206| GetLimits: function() { return {"Bar": 20}; }, | 207| 207| GetCounts: function() { return {"Bar": 0}; }, | 208| |- GetLimitChangers: function() {return {"Bar": {}}; } | | 208|+ GetLimitChangers: function() {return { "Bar": {}}; } | 209| 209| }); | 210| 210| | 211| 211| AddMock(101, IID_TechnologyManager, { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 205| 205| AddMock(101, IID_EntityLimits, { | 206| 206| GetLimits: function() { return {"Bar": 20}; }, | 207| 207| GetCounts: function() { return {"Bar": 0}; }, | 208| |- GetLimitChangers: function() {return {"Bar": {}}; } | | 208|+ GetLimitChangers: function() {return {"Bar": {} }; } | 209| 209| }); | 210| 210| | 211| 211| AddMock(101, IID_TechnologyManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetBasicStatistics' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 218| 218| }); | 219| 219| | 220| 220| AddMock(101, IID_StatisticsTracker, { | 221| |- GetBasicStatistics: function() { | | 221|+ "GetBasicStatistics": function() { | 222| 222| return { | 223| 223| "resourcesGathered": { | 224| 224| "food": 100, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSequences' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 230| 230| "percentMapExplored": 10 | 231| 231| }; | 232| 232| }, | 233| |- GetSequences: function() { | | 233|+ "GetSequences": function() { | 234| 234| return { | 235| 235| "unitsTrained": [0, 10], | 236| 236| "unitsLost": [0, 9], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseTrainedUnitsCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 255| 255| "teamPeakPercentOfMapControlled": [0, 10] | 256| 256| }; | 257| 257| }, | 258| |- IncreaseTrainedUnitsCounter: function() { return 1; }, | | 258|+ "IncreaseTrainedUnitsCounter": function() { return 1; }, | 259| 259| IncreaseConstructedBuildingsCounter: function() { return 1; }, | 260| 260| IncreaseBuiltCivCentresCounter: function() { return 1; } | 261| 261| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseConstructedBuildingsCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 256| 256| }; | 257| 257| }, | 258| 258| IncreaseTrainedUnitsCounter: function() { return 1; }, | 259| |- IncreaseConstructedBuildingsCounter: function() { return 1; }, | | 259|+ "IncreaseConstructedBuildingsCounter": function() { return 1; }, | 260| 260| IncreaseBuiltCivCentresCounter: function() { return 1; } | 261| 261| }); | 262| 262| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseBuiltCivCentresCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 257| 257| }, | 258| 258| IncreaseTrainedUnitsCounter: function() { return 1; }, | 259| 259| IncreaseConstructedBuildingsCounter: function() { return 1; }, | 260| |- IncreaseBuiltCivCentresCounter: function() { return 1; } | | 260|+ "IncreaseBuiltCivCentresCounter": function() { return 1; } | 261| 261| }); | 262| 262| | 263| 263| // Note: property order matters when using TS_ASSERT_UNEVAL_EQUALS, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'players' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 264| 264| // because uneval preserves property order. So make sure this object | 265| 265| // matches the ordering in GuiInterface. | 266| 266| TS_ASSERT_UNEVAL_EQUALS(cmp.GetSimulationState(), { | 267| |- players: [ | | 267|+ "players": [ | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'name' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 266| 266| TS_ASSERT_UNEVAL_EQUALS(cmp.GetSimulationState(), { | 267| 267| players: [ | 268| 268| { | 269| |- name: "Player 1", | | 269|+ "name": "Player 1", | 270| 270| civ: "gaia", | 271| 271| color: { r:1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'civ' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| players: [ | 268| 268| { | 269| 269| name: "Player 1", | 270| |- civ: "gaia", | | 270|+ "civ": "gaia", | 271| 271| color: { r:1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'color' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ "color": { r:1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'r' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { "r":1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'r'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r: 1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'g' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r:1, "g":1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'g'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r:1, g: 1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'b' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r:1, g:1, "b":1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'b'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r:1, g:1, b: 1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'a' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r:1, g:1, b:1, "a":1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'a'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r:1, g:1, b:1, a: 1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'controlsAll' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| 271| color: { r:1, g:1, b:1, a:1 }, | 272| |- controlsAll: false, | | 272|+ "controlsAll": false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | 275| 275| popMax: 200, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popCount' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 270| 270| civ: "gaia", | 271| 271| color: { r:1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| |- popCount: 10, | | 273|+ "popCount": 10, | 274| 274| popLimit: 20, | 275| 275| popMax: 200, | 276| 276| panelEntities: [], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popLimit' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 271| 271| color: { r:1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| |- popLimit: 20, | | 274|+ "popLimit": 20, | 275| 275| popMax: 200, | 276| 276| panelEntities: [], | 277| 277| resourceCounts: { food: 100 }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popMax' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | 275| |- popMax: 200, | | 275|+ "popMax": 200, | 276| 276| panelEntities: [], | 277| 277| resourceCounts: { food: 100 }, | 278| 278| trainingBlocked: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'panelEntities' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | 275| 275| popMax: 200, | 276| |- panelEntities: [], | | 276|+ "panelEntities": [], | 277| 277| resourceCounts: { food: 100 }, | 278| 278| trainingBlocked: false, | 279| 279| state: "active", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'resourceCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 274| 274| popLimit: 20, | 275| 275| popMax: 200, | 276| 276| panelEntities: [], | 277| |- resourceCounts: { food: 100 }, | | 277|+ "resourceCounts": { food: 100 }, | 278| 278| trainingBlocked: false, | 279| 279| state: "active", | 280| 280| team: -1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 274| 274| popLimit: 20, | 275| 275| popMax: 200, | 276| 276| panelEntities: [], | 277| |- resourceCounts: { food: 100 }, | | 277|+ resourceCounts: { "food": 100 }, | 278| 278| trainingBlocked: false, | 279| 279| state: "active", | 280| 280| team: -1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'trainingBlocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 275| 275| popMax: 200, | 276| 276| panelEntities: [], | 277| 277| resourceCounts: { food: 100 }, | 278| |- trainingBlocked: false, | | 278|+ "trainingBlocked": false, | 279| 279| state: "active", | 280| 280| team: -1, | 281| 281| teamsLocked: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'state' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 276| 276| panelEntities: [], | 277| 277| resourceCounts: { food: 100 }, | 278| 278| trainingBlocked: false, | 279| |- state: "active", | | 279|+ "state": "active", | 280| 280| team: -1, | 281| 281| teamsLocked: false, | 282| 282| cheatsEnabled: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'team' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 277| 277| resourceCounts: { food: 100 }, | 278| 278| trainingBlocked: false, | 279| 279| state: "active", | 280| |- team: -1, | | 280|+ "team": -1, | 281| 281| teamsLocked: false, | 282| 282| cheatsEnabled: false, | 283| 283| disabledTemplates: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'teamsLocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 278| 278| trainingBlocked: false, | 279| 279| state: "active", | 280| 280| team: -1, | 281| |- teamsLocked: false, | | 281|+ "teamsLocked": false, | 282| 282| cheatsEnabled: false, | 283| 283| disabledTemplates: {}, | 284| 284| disabledTechnologies: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'cheatsEnabled' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 279| 279| state: "active", | 280| 280| team: -1, | 281| 281| teamsLocked: false, | 282| |- cheatsEnabled: false, | | 282|+ "cheatsEnabled": false, | 283| 283| disabledTemplates: {}, | 284| 284| disabledTechnologies: {}, | 285| 285| hasSharedDropsites: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'disabledTemplates' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 280| 280| team: -1, | 281| 281| teamsLocked: false, | 282| 282| cheatsEnabled: false, | 283| |- disabledTemplates: {}, | | 283|+ "disabledTemplates": {}, | 284| 284| disabledTechnologies: {}, | 285| 285| hasSharedDropsites: false, | 286| 286| hasSharedLos: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'disabledTechnologies' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 281| 281| teamsLocked: false, | 282| 282| cheatsEnabled: false, | 283| 283| disabledTemplates: {}, | 284| |- disabledTechnologies: {}, | | 284|+ "disabledTechnologies": {}, | 285| 285| hasSharedDropsites: false, | 286| 286| hasSharedLos: false, | 287| 287| spyCostMultiplier: 1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'hasSharedDropsites' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 282| 282| cheatsEnabled: false, | 283| 283| disabledTemplates: {}, | 284| 284| disabledTechnologies: {}, | 285| |- hasSharedDropsites: false, | | 285|+ "hasSharedDropsites": false, | 286| 286| hasSharedLos: false, | 287| 287| spyCostMultiplier: 1, | 288| 288| phase: "village", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'hasSharedLos' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 283| 283| disabledTemplates: {}, | 284| 284| disabledTechnologies: {}, | 285| 285| hasSharedDropsites: false, | 286| |- hasSharedLos: false, | | 286|+ "hasSharedLos": false, | 287| 287| spyCostMultiplier: 1, | 288| 288| phase: "village", | 289| 289| isAlly: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'spyCostMultiplier' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 284| 284| disabledTechnologies: {}, | 285| 285| hasSharedDropsites: false, | 286| 286| hasSharedLos: false, | 287| |- spyCostMultiplier: 1, | | 287|+ "spyCostMultiplier": 1, | 288| 288| phase: "village", | 289| 289| isAlly: [false, false], | 290| 290| isMutualAlly: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'phase' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 285| 285| hasSharedDropsites: false, | 286| 286| hasSharedLos: false, | 287| 287| spyCostMultiplier: 1, | 288| |- phase: "village", | | 288|+ "phase": "village", | 289| 289| isAlly: [false, false], | 290| 290| isMutualAlly: [false, false], | 291| 291| isNeutral: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 286| 286| hasSharedLos: false, | 287| 287| spyCostMultiplier: 1, | 288| 288| phase: "village", | 289| |- isAlly: [false, false], | | 289|+ "isAlly": [false, false], | 290| 290| isMutualAlly: [false, false], | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isMutualAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 287| 287| spyCostMultiplier: 1, | 288| 288| phase: "village", | 289| 289| isAlly: [false, false], | 290| |- isMutualAlly: [false, false], | | 290|+ "isMutualAlly": [false, false], | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isNeutral' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 288| 288| phase: "village", | 289| 289| isAlly: [false, false], | 290| 290| isMutualAlly: [false, false], | 291| |- isNeutral: [false, false], | | 291|+ "isNeutral": [false, false], | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isEnemy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 289| 289| isAlly: [false, false], | 290| 290| isMutualAlly: [false, false], | 291| 291| isNeutral: [false, false], | 292| |- isEnemy: [true, true], | | 292|+ "isEnemy": [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityLimits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 290| 290| isMutualAlly: [false, false], | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| |- entityLimits: {"Foo": 10}, | | 293|+ "entityLimits": {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 290| 290| isMutualAlly: [false, false], | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| |- entityLimits: {"Foo": 10}, | | 293|+ entityLimits: { "Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 290| 290| isMutualAlly: [false, false], | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| |- entityLimits: {"Foo": 10}, | | 293|+ entityLimits: {"Foo": 10 }, | 294| 294| entityCounts: {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| |- entityCounts: {"Foo": 5}, | | 294|+ "entityCounts": {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| |- entityCounts: {"Foo": 5}, | | 294|+ entityCounts: { "Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| |- entityCounts: {"Foo": 5}, | | 294|+ entityCounts: {"Foo": 5 }, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityLimitChangers' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| |- entityLimitChangers: {"Foo": {}}, | | 295|+ "entityLimitChangers": {"Foo": {}}, | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | 298| 298| researchedTechs: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| |- entityLimitChangers: {"Foo": {}}, | | 295|+ entityLimitChangers: { "Foo": {}}, | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | 298| 298| researchedTechs: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| |- entityLimitChangers: {"Foo": {}}, | | 295|+ entityLimitChangers: {"Foo": {} }, | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | 298| 298| researchedTechs: new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchQueued' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 293| 293| entityLimits: {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| |- researchQueued: new Map(), | | 296|+ "researchQueued": new Map(), | 297| 297| researchStarted: new Set(), | 298| 298| researchedTechs: new Set(), | 299| 299| classCounts: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchStarted' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 294| 294| entityCounts: {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | 297| |- researchStarted: new Set(), | | 297|+ "researchStarted": new Set(), | 298| 298| researchedTechs: new Set(), | 299| 299| classCounts: {}, | 300| 300| typeCountsByClass: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchedTechs' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | 298| |- researchedTechs: new Set(), | | 298|+ "researchedTechs": new Set(), | 299| 299| classCounts: {}, | 300| 300| typeCountsByClass: {}, | 301| 301| canBarter: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'classCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | 298| 298| researchedTechs: new Set(), | 299| |- classCounts: {}, | | 299|+ "classCounts": {}, | 300| 300| typeCountsByClass: {}, | 301| 301| canBarter: false, | 302| 302| barterPrices: { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'typeCountsByClass' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 297| 297| researchStarted: new Set(), | 298| 298| researchedTechs: new Set(), | 299| 299| classCounts: {}, | 300| |- typeCountsByClass: {}, | | 300|+ "typeCountsByClass": {}, | 301| 301| canBarter: false, | 302| 302| barterPrices: { | 303| 303| "buy": { "food": 150 }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'canBarter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 298| 298| researchedTechs: new Set(), | 299| 299| classCounts: {}, | 300| 300| typeCountsByClass: {}, | 301| |- canBarter: false, | | 301|+ "canBarter": false, | 302| 302| barterPrices: { | 303| 303| "buy": { "food": 150 }, | 304| 304| "sell": { "food": 25 } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'barterPrices' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 299| 299| classCounts: {}, | 300| 300| typeCountsByClass: {}, | 301| 301| canBarter: false, | 302| |- barterPrices: { | | 302|+ "barterPrices": { | 303| 303| "buy": { "food": 150 }, | 304| 304| "sell": { "food": 25 } | 305| 305| }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'statistics' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 303| 303| "buy": { "food": 150 }, | 304| 304| "sell": { "food": 25 } | 305| 305| }, | 306| |- statistics: { | | 306|+ "statistics": { | 307| 307| resourcesGathered: { | 308| 308| food: 100, | 309| 309| wood: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'resourcesGathered' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 304| 304| "sell": { "food": 25 } | 305| 305| }, | 306| 306| statistics: { | 307| |- resourcesGathered: { | | 307|+ "resourcesGathered": { | 308| 308| food: 100, | 309| 309| wood: 0, | 310| 310| metal: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 305| 305| }, | 306| 306| statistics: { | 307| 307| resourcesGathered: { | 308| |- food: 100, | | 308|+ "food": 100, | 309| 309| wood: 0, | 310| 310| metal: 0, | 311| 311| stone: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'wood' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 306| 306| statistics: { | 307| 307| resourcesGathered: { | 308| 308| food: 100, | 309| |- wood: 0, | | 309|+ "wood": 0, | 310| 310| metal: 0, | 311| 311| stone: 0, | 312| 312| vegetarianFood: 0 | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'metal' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 307| 307| resourcesGathered: { | 308| 308| food: 100, | 309| 309| wood: 0, | 310| |- metal: 0, | | 310|+ "metal": 0, | 311| 311| stone: 0, | 312| 312| vegetarianFood: 0 | 313| 313| }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'stone' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 308| 308| food: 100, | 309| 309| wood: 0, | 310| 310| metal: 0, | 311| |- stone: 0, | | 311|+ "stone": 0, | 312| 312| vegetarianFood: 0 | 313| 313| }, | 314| 314| percentMapExplored: 10 | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'vegetarianFood' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 309| 309| wood: 0, | 310| 310| metal: 0, | 311| 311| stone: 0, | 312| |- vegetarianFood: 0 | | 312|+ "vegetarianFood": 0 | 313| 313| }, | 314| 314| percentMapExplored: 10 | 315| 315| } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'percentMapExplored' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 311| 311| stone: 0, | 312| 312| vegetarianFood: 0 | 313| 313| }, | 314| |- percentMapExplored: 10 | | 314|+ "percentMapExplored": 10 | 315| 315| } | 316| 316| }, | 317| 317| { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'name' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 315| 315| } | 316| 316| }, | 317| 317| { | 318| |- name: "Player 2", | | 318|+ "name": "Player 2", | 319| 319| civ: "mace", | 320| 320| color: { r:1, g:0, b:0, a:1 }, | 321| 321| controlsAll: true, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'civ' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 316| 316| }, | 317| 317| { | 318| 318| name: "Player 2", | 319| |- civ: "mace", | | 319|+ "civ": "mace", | 320| 320| color: { r:1, g:0, b:0, a:1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'color' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 317| 317| { | 318| 318| name: "Player 2", | 319| 319| civ: "mace", | 320| |- color: { r:1, g:0, b:0, a:1 }, | | 320|+ "color": { r:1, g:0, b:0, a:1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'r' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 317| 317| { | 318| 318| name: "Player 2", | 319| 319| civ: "mace", | 320| |- color: { r:1, g:0, b:0, a:1 }, | | 320|+ color: { "r":1, g:0, b:0, a:1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'r'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 317| 317| { | 318| 318| name: "Player 2", | 319| 319| civ: "mace", | 320| |- color: { r:1, g:0, b:0, a:1 }, | | 320|+ color: { r: 1, g:0, b:0, a:1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'g' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 317| 317| { | 318| 318| name: "Player 2", | 319| 319| civ: "mace", | 320| |- color: { r:1, g:0, b:0, a:1 }, | | 320|+ color: { r:1, "g":0, b:0, a:1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'g'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 317| 317| { | 318| 318| name: "Player 2", | 319| 319| civ: "mace", | 320| |- color: { r:1, g:0, b:0, a:1 }, | | 320|+ color: { r:1, g: 0, b:0, a:1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'b' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 317| 317| { | 318| 318| name: "Player 2", | 319| 319| civ: "mace", | 320| |- color: { r:1, g:0, b:0, a:1 }, | | 320|+ color: { r:1, g:0, "b":0, a:1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'b'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 317| 317| { | 318| 318| name: "Player 2", | 319| 319| civ: "mace", | 320| |- color: { r:1, g:0, b:0, a:1 }, | | 320|+ color: { r:1, g:0, b: 0, a:1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'a' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 317| 317| { | 318| 318| name: "Player 2", | 319| 319| civ: "mace", | 320| |- color: { r:1, g:0, b:0, a:1 }, | | 320|+ color: { r:1, g:0, b:0, "a":1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'a'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 317| 317| { | 318| 318| name: "Player 2", | 319| 319| civ: "mace", | 320| |- color: { r:1, g:0, b:0, a:1 }, | | 320|+ color: { r:1, g:0, b:0, a: 1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'controlsAll' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 318| 318| name: "Player 2", | 319| 319| civ: "mace", | 320| 320| color: { r:1, g:0, b:0, a:1 }, | 321| |- controlsAll: true, | | 321|+ "controlsAll": true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | 324| 324| popMax: 300, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popCount' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 319| 319| civ: "mace", | 320| 320| color: { r:1, g:0, b:0, a:1 }, | 321| 321| controlsAll: true, | 322| |- popCount: 40, | | 322|+ "popCount": 40, | 323| 323| popLimit: 30, | 324| 324| popMax: 300, | 325| 325| panelEntities: [], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popLimit' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 320| 320| color: { r:1, g:0, b:0, a:1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| |- popLimit: 30, | | 323|+ "popLimit": 30, | 324| 324| popMax: 300, | 325| 325| panelEntities: [], | 326| 326| resourceCounts: { food: 200 }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popMax' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | 324| |- popMax: 300, | | 324|+ "popMax": 300, | 325| 325| panelEntities: [], | 326| 326| resourceCounts: { food: 200 }, | 327| 327| trainingBlocked: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'panelEntities' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | 324| 324| popMax: 300, | 325| |- panelEntities: [], | | 325|+ "panelEntities": [], | 326| 326| resourceCounts: { food: 200 }, | 327| 327| trainingBlocked: false, | 328| 328| state: "active", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'resourceCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 323| 323| popLimit: 30, | 324| 324| popMax: 300, | 325| 325| panelEntities: [], | 326| |- resourceCounts: { food: 200 }, | | 326|+ "resourceCounts": { food: 200 }, | 327| 327| trainingBlocked: false, | 328| 328| state: "active", | 329| 329| team: -1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 323| 323| popLimit: 30, | 324| 324| popMax: 300, | 325| 325| panelEntities: [], | 326| |- resourceCounts: { food: 200 }, | | 326|+ resourceCounts: { "food": 200 }, | 327| 327| trainingBlocked: false, | 328| 328| state: "active", | 329| 329| team: -1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'trainingBlocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 324| 324| popMax: 300, | 325| 325| panelEntities: [], | 326| 326| resourceCounts: { food: 200 }, | 327| |- trainingBlocked: false, | | 327|+ "trainingBlocked": false, | 328| 328| state: "active", | 329| 329| team: -1, | 330| 330| teamsLocked: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'state' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 325| 325| panelEntities: [], | 326| 326| resourceCounts: { food: 200 }, | 327| 327| trainingBlocked: false, | 328| |- state: "active", | | 328|+ "state": "active", | 329| 329| team: -1, | 330| 330| teamsLocked: false, | 331| 331| cheatsEnabled: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'team' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 326| 326| resourceCounts: { food: 200 }, | 327| 327| trainingBlocked: false, | 328| 328| state: "active", | 329| |- team: -1, | | 329|+ "team": -1, | 330| 330| teamsLocked: false, | 331| 331| cheatsEnabled: false, | 332| 332| disabledTemplates: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'teamsLocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 327| 327| trainingBlocked: false, | 328| 328| state: "active", | 329| 329| team: -1, | 330| |- teamsLocked: false, | | 330|+ "teamsLocked": false, | 331| 331| cheatsEnabled: false, | 332| 332| disabledTemplates: {}, | 333| 333| disabledTechnologies: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'cheatsEnabled' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 328| 328| state: "active", | 329| 329| team: -1, | 330| 330| teamsLocked: false, | 331| |- cheatsEnabled: false, | | 331|+ "cheatsEnabled": false, | 332| 332| disabledTemplates: {}, | 333| 333| disabledTechnologies: {}, | 334| 334| hasSharedDropsites: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'disabledTemplates' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 329| 329| team: -1, | 330| 330| teamsLocked: false, | 331| 331| cheatsEnabled: false, | 332| |- disabledTemplates: {}, | | 332|+ "disabledTemplates": {}, | 333| 333| disabledTechnologies: {}, | 334| 334| hasSharedDropsites: false, | 335| 335| hasSharedLos: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'disabledTechnologies' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 330| 330| teamsLocked: false, | 331| 331| cheatsEnabled: false, | 332| 332| disabledTemplates: {}, | 333| |- disabledTechnologies: {}, | | 333|+ "disabledTechnologies": {}, | 334| 334| hasSharedDropsites: false, | 335| 335| hasSharedLos: false, | 336| 336| spyCostMultiplier: 1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'hasSharedDropsites' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 331| 331| cheatsEnabled: false, | 332| 332| disabledTemplates: {}, | 333| 333| disabledTechnologies: {}, | 334| |- hasSharedDropsites: false, | | 334|+ "hasSharedDropsites": false, | 335| 335| hasSharedLos: false, | 336| 336| spyCostMultiplier: 1, | 337| 337| phase: "village", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'hasSharedLos' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 332| 332| disabledTemplates: {}, | 333| 333| disabledTechnologies: {}, | 334| 334| hasSharedDropsites: false, | 335| |- hasSharedLos: false, | | 335|+ "hasSharedLos": false, | 336| 336| spyCostMultiplier: 1, | 337| 337| phase: "village", | 338| 338| isAlly: [true, true], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'spyCostMultiplier' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 333| 333| disabledTechnologies: {}, | 334| 334| hasSharedDropsites: false, | 335| 335| hasSharedLos: false, | 336| |- spyCostMultiplier: 1, | | 336|+ "spyCostMultiplier": 1, | 337| 337| phase: "village", | 338| 338| isAlly: [true, true], | 339| 339| isMutualAlly: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'phase' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 334| 334| hasSharedDropsites: false, | 335| 335| hasSharedLos: false, | 336| 336| spyCostMultiplier: 1, | 337| |- phase: "village", | | 337|+ "phase": "village", | 338| 338| isAlly: [true, true], | 339| 339| isMutualAlly: [false, false], | 340| 340| isNeutral: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 335| 335| hasSharedLos: false, | 336| 336| spyCostMultiplier: 1, | 337| 337| phase: "village", | 338| |- isAlly: [true, true], | | 338|+ "isAlly": [true, true], | 339| 339| isMutualAlly: [false, false], | 340| 340| isNeutral: [false, false], | 341| 341| isEnemy: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isMutualAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 336| 336| spyCostMultiplier: 1, | 337| 337| phase: "village", | 338| 338| isAlly: [true, true], | 339| |- isMutualAlly: [false, false], | | 339|+ "isMutualAlly": [false, false], | 340| 340| isNeutral: [false, false], | 341| 341| isEnemy: [false, false], | 342| 342| entityLimits: {"Bar": 20}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isNeutral' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 337| 337| phase: "village", | 338| 338| isAlly: [true, true], | 339| 339| isMutualAlly: [false, false], | 340| |- isNeutral: [false, false], | | 340|+ "isNeutral": [false, false], | 341| 341| isEnemy: [false, false], | 342| 342| entityLimits: {"Bar": 20}, | 343| 343| entityCounts: {"Bar": 0}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isEnemy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 338| 338| isAlly: [true, true], | 339| 339| isMutualAlly: [false, false], | 340| 340| isNeutral: [false, false], | 341| |- isEnemy: [false, false], | | 341|+ "isEnemy": [false, false], | 342| 342| entityLimits: {"Bar": 20}, | 343| 343| entityCounts: {"Bar": 0}, | 344| 344| entityLimitChangers: {"Bar": {}}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityLimits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 339| 339| isMutualAlly: [false, false], | 340| 340| isNeutral: [false, false], | 341| 341| isEnemy: [false, false], | 342| |- entityLimits: {"Bar": 20}, | | 342|+ "entityLimits": {"Bar": 20}, | 343| 343| entityCounts: {"Bar": 0}, | 344| 344| entityLimitChangers: {"Bar": {}}, | 345| 345| researchQueued: new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 339| 339| isMutualAlly: [false, false], | 340| 340| isNeutral: [false, false], | 341| 341| isEnemy: [false, false], | 342| |- entityLimits: {"Bar": 20}, | | 342|+ entityLimits: { "Bar": 20}, | 343| 343| entityCounts: {"Bar": 0}, | 344| 344| entityLimitChangers: {"Bar": {}}, | 345| 345| researchQueued: new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 339| 339| isMutualAlly: [false, false], | 340| 340| isNeutral: [false, false], | 341| 341| isEnemy: [false, false], | 342| |- entityLimits: {"Bar": 20}, | | 342|+ entityLimits: {"Bar": 20 }, | 343| 343| entityCounts: {"Bar": 0}, | 344| 344| entityLimitChangers: {"Bar": {}}, | 345| 345| researchQueued: new Map(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 340| 340| isNeutral: [false, false], | 341| 341| isEnemy: [false, false], | 342| 342| entityLimits: {"Bar": 20}, | 343| |- entityCounts: {"Bar": 0}, | | 343|+ "entityCounts": {"Bar": 0}, | 344| 344| entityLimitChangers: {"Bar": {}}, | 345| 345| researchQueued: new Map(), | 346| 346| researchStarted: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 340| 340| isNeutral: [false, false], | 341| 341| isEnemy: [false, false], | 342| 342| entityLimits: {"Bar": 20}, | 343| |- entityCounts: {"Bar": 0}, | | 343|+ entityCounts: { "Bar": 0}, | 344| 344| entityLimitChangers: {"Bar": {}}, | 345| 345| researchQueued: new Map(), | 346| 346| researchStarted: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 340| 340| isNeutral: [false, false], | 341| 341| isEnemy: [false, false], | 342| 342| entityLimits: {"Bar": 20}, | 343| |- entityCounts: {"Bar": 0}, | | 343|+ entityCounts: {"Bar": 0 }, | 344| 344| entityLimitChangers: {"Bar": {}}, | 345| 345| researchQueued: new Map(), | 346| 346| researchStarted: new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityLimitChangers' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 341| 341| isEnemy: [false, false], | 342| 342| entityLimits: {"Bar": 20}, | 343| 343| entityCounts: {"Bar": 0}, | 344| |- entityLimitChangers: {"Bar": {}}, | | 344|+ "entityLimitChangers": {"Bar": {}}, | 345| 345| researchQueued: new Map(), | 346| 346| researchStarted: new Set(), | 347| 347| researchedTechs: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 341| 341| isEnemy: [false, false], | 342| 342| entityLimits: {"Bar": 20}, | 343| 343| entityCounts: {"Bar": 0}, | 344| |- entityLimitChangers: {"Bar": {}}, | | 344|+ entityLimitChangers: { "Bar": {}}, | 345| 345| researchQueued: new Map(), | 346| 346| researchStarted: new Set(), | 347| 347| researchedTechs: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 341| 341| isEnemy: [false, false], | 342| 342| entityLimits: {"Bar": 20}, | 343| 343| entityCounts: {"Bar": 0}, | 344| |- entityLimitChangers: {"Bar": {}}, | | 344|+ entityLimitChangers: {"Bar": {} }, | 345| 345| researchQueued: new Map(), | 346| 346| researchStarted: new Set(), | 347| 347| researchedTechs: new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchQueued' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 342| 342| entityLimits: {"Bar": 20}, | 343| 343| entityCounts: {"Bar": 0}, | 344| 344| entityLimitChangers: {"Bar": {}}, | 345| |- researchQueued: new Map(), | | 345|+ "researchQueued": new Map(), | 346| 346| researchStarted: new Set(), | 347| 347| researchedTechs: new Set(), | 348| 348| classCounts: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchStarted' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 343| 343| entityCounts: {"Bar": 0}, | 344| 344| entityLimitChangers: {"Bar": {}}, | 345| 345| researchQueued: new Map(), | 346| |- researchStarted: new Set(), | | 346|+ "researchStarted": new Set(), | 347| 347| researchedTechs: new Set(), | 348| 348| classCounts: {}, | 349| 349| typeCountsByClass: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchedTechs' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 344| 344| entityLimitChangers: {"Bar": {}}, | 345| 345| researchQueued: new Map(), | 346| 346| researchStarted: new Set(), | 347| |- researchedTechs: new Set(), | | 347|+ "researchedTechs": new Set(), | 348| 348| classCounts: {}, | 349| 349| typeCountsByClass: {}, | 350| 350| canBarter: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'classCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 345| 345| researchQueued: new Map(), | 346| 346| researchStarted: new Set(), | 347| 347| researchedTechs: new Set(), | 348| |- classCounts: {}, | | 348|+ "classCounts": {}, | 349| 349| typeCountsByClass: {}, | 350| 350| canBarter: false, | 351| 351| barterPrices: { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'typeCountsByClass' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 346| 346| researchStarted: new Set(), | 347| 347| researchedTechs: new Set(), | 348| 348| classCounts: {}, | 349| |- typeCountsByClass: {}, | | 349|+ "typeCountsByClass": {}, | 350| 350| canBarter: false, | 351| 351| barterPrices: { | 352| 352| "buy": { "food": 150 }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'canBarter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 347| 347| researchedTechs: new Set(), | 348| 348| classCounts: {}, | 349| 349| typeCountsByClass: {}, | 350| |- canBarter: false, | | 350|+ "canBarter": false, | 351| 351| barterPrices: { | 352| 352| "buy": { "food": 150 }, | 353| 353| "sell": { "food": 25 } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'barterPrices' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 348| 348| classCounts: {}, | 349| 349| typeCountsByClass: {}, | 350| 350| canBarter: false, | 351| |- barterPrices: { | | 351|+ "barterPrices": { | 352| 352| "buy": { "food": 150 }, | 353| 353| "sell": { "food": 25 } | 354| 354| }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'statistics' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 352| 352| "buy": { "food": 150 }, | 353| 353| "sell": { "food": 25 } | 354| 354| }, | 355| |- statistics: { | | 355|+ "statistics": { | 356| 356| resourcesGathered: { | 357| 357| food: 100, | 358| 358| wood: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'resourcesGathered' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 353| 353| "sell": { "food": 25 } | 354| 354| }, | 355| 355| statistics: { | 356| |- resourcesGathered: { | | 356|+ "resourcesGathered": { | 357| 357| food: 100, | 358| 358| wood: 0, | 359| 359| metal: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 354| 354| }, | 355| 355| statistics: { | 356| 356| resourcesGathered: { | 357| |- food: 100, | | 357|+ "food": 100, | 358| 358| wood: 0, | 359| 359| metal: 0, | 360| 360| stone: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'wood' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 355| 355| statistics: { | 356| 356| resourcesGathered: { | 357| 357| food: 100, | 358| |- wood: 0, | | 358|+ "wood": 0, | 359| 359| metal: 0, | 360| 360| stone: 0, | 361| 361| vegetarianFood: 0 | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'metal' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 356| 356| resourcesGathered: { | 357| 357| food: 100, | 358| 358| wood: 0, | 359| |- metal: 0, | | 359|+ "metal": 0, | 360| 360| stone: 0, | 361| 361| vegetarianFood: 0 | 362| 362| }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'stone' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 357| 357| food: 100, | 358| 358| wood: 0, | 359| 359| metal: 0, | 360| |- stone: 0, | | 360|+ "stone": 0, | 361| 361| vegetarianFood: 0 | 362| 362| }, | 363| 363| percentMapExplored: 10 | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'vegetarianFood' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 358| 358| wood: 0, | 359| 359| metal: 0, | 360| 360| stone: 0, | 361| |- vegetarianFood: 0 | | 361|+ "vegetarianFood": 0 | 362| 362| }, | 363| 363| percentMapExplored: 10 | 364| 364| } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'percentMapExplored' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 360| 360| stone: 0, | 361| 361| vegetarianFood: 0 | 362| 362| }, | 363| |- percentMapExplored: 10 | | 363|+ "percentMapExplored": 10 | 364| 364| } | 365| 365| } | 366| 366| ], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'circularMap' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 364| 364| } | 365| 365| } | 366| 366| ], | 367| |- circularMap: false, | | 367|+ "circularMap": false, | 368| 368| timeElapsed: 0, | 369| 369| "victoryConditions": ["conquest", "wonder"], | 370| 370| alliedVictory: false | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'timeElapsed' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 365| 365| } | 366| 366| ], | 367| 367| circularMap: false, | 368| |- timeElapsed: 0, | | 368|+ "timeElapsed": 0, | 369| 369| "victoryConditions": ["conquest", "wonder"], | 370| 370| alliedVictory: false | 371| 371| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'alliedVictory' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 367| 367| circularMap: false, | 368| 368| timeElapsed: 0, | 369| 369| "victoryConditions": ["conquest", "wonder"], | 370| |- alliedVictory: false | | 370|+ "alliedVictory": false | 371| 371| }); | 372| 372| | 373| 373| TS_ASSERT_UNEVAL_EQUALS(cmp.GetExtendedSimulationState(), { | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'r'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 375| 375| { | 376| 376| "name": "Player 1", | 377| 377| "civ": "gaia", | 378| |- "color": { "r":1, "g":1, "b":1, "a":1 }, | | 378|+ "color": { "r": 1, "g":1, "b":1, "a":1 }, | 379| 379| "controlsAll": false, | 380| 380| "popCount": 10, | 381| 381| "popLimit": 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'g'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 375| 375| { | 376| 376| "name": "Player 1", | 377| 377| "civ": "gaia", | 378| |- "color": { "r":1, "g":1, "b":1, "a":1 }, | | 378|+ "color": { "r":1, "g": 1, "b":1, "a":1 }, | 379| 379| "controlsAll": false, | 380| 380| "popCount": 10, | 381| 381| "popLimit": 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'b'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 375| 375| { | 376| 376| "name": "Player 1", | 377| 377| "civ": "gaia", | 378| |- "color": { "r":1, "g":1, "b":1, "a":1 }, | | 378|+ "color": { "r":1, "g":1, "b": 1, "a":1 }, | 379| 379| "controlsAll": false, | 380| 380| "popCount": 10, | 381| 381| "popLimit": 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'a'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 375| 375| { | 376| 376| "name": "Player 1", | 377| 377| "civ": "gaia", | 378| |- "color": { "r":1, "g":1, "b":1, "a":1 }, | | 378|+ "color": { "r":1, "g":1, "b":1, "a": 1 }, | 379| 379| "controlsAll": false, | 380| 380| "popCount": 10, | 381| 381| "popLimit": 20, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 397| 397| "isMutualAlly": [false, false], | 398| 398| "isNeutral": [false, false], | 399| 399| "isEnemy": [true, true], | 400| |- "entityLimits": {"Foo": 10}, | | 400|+ "entityLimits": { "Foo": 10}, | 401| 401| "entityCounts": {"Foo": 5}, | 402| 402| "entityLimitChangers": {"Foo": {}}, | 403| 403| "researchQueued": new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 397| 397| "isMutualAlly": [false, false], | 398| 398| "isNeutral": [false, false], | 399| 399| "isEnemy": [true, true], | 400| |- "entityLimits": {"Foo": 10}, | | 400|+ "entityLimits": {"Foo": 10 }, | 401| 401| "entityCounts": {"Foo": 5}, | 402| 402| "entityLimitChangers": {"Foo": {}}, | 403| 403| "researchQueued": new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 398| 398| "isNeutral": [false, false], | 399| 399| "isEnemy": [true, true], | 400| 400| "entityLimits": {"Foo": 10}, | 401| |- "entityCounts": {"Foo": 5}, | | 401|+ "entityCounts": { "Foo": 5}, | 402| 402| "entityLimitChangers": {"Foo": {}}, | 403| 403| "researchQueued": new Map(), | 404| 404| "researchStarted": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 398| 398| "isNeutral": [false, false], | 399| 399| "isEnemy": [true, true], | 400| 400| "entityLimits": {"Foo": 10}, | 401| |- "entityCounts": {"Foo": 5}, | | 401|+ "entityCounts": {"Foo": 5 }, | 402| 402| "entityLimitChangers": {"Foo": {}}, | 403| 403| "researchQueued": new Map(), | 404| 404| "researchStarted": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 399| 399| "isEnemy": [true, true], | 400| 400| "entityLimits": {"Foo": 10}, | 401| 401| "entityCounts": {"Foo": 5}, | 402| |- "entityLimitChangers": {"Foo": {}}, | | 402|+ "entityLimitChangers": { "Foo": {}}, | 403| 403| "researchQueued": new Map(), | 404| 404| "researchStarted": new Set(), | 405| 405| "researchedTechs": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 399| 399| "isEnemy": [true, true], | 400| 400| "entityLimits": {"Foo": 10}, | 401| 401| "entityCounts": {"Foo": 5}, | 402| |- "entityLimitChangers": {"Foo": {}}, | | 402|+ "entityLimitChangers": {"Foo": {} }, | 403| 403| "researchQueued": new Map(), | 404| 404| "researchStarted": new Set(), | 405| 405| "researchedTechs": new Set(), | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'r'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 447| 447| { | 448| 448| "name": "Player 2", | 449| 449| "civ": "mace", | 450| |- "color": { "r":1, "g":0, "b":0, "a":1 }, | | 450|+ "color": { "r": 1, "g":0, "b":0, "a":1 }, | 451| 451| "controlsAll": true, | 452| 452| "popCount": 40, | 453| 453| "popLimit": 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'g'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 447| 447| { | 448| 448| "name": "Player 2", | 449| 449| "civ": "mace", | 450| |- "color": { "r":1, "g":0, "b":0, "a":1 }, | | 450|+ "color": { "r":1, "g": 0, "b":0, "a":1 }, | 451| 451| "controlsAll": true, | 452| 452| "popCount": 40, | 453| 453| "popLimit": 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'b'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 447| 447| { | 448| 448| "name": "Player 2", | 449| 449| "civ": "mace", | 450| |- "color": { "r":1, "g":0, "b":0, "a":1 }, | | 450|+ "color": { "r":1, "g":0, "b": 0, "a":1 }, | 451| 451| "controlsAll": true, | 452| 452| "popCount": 40, | 453| 453| "popLimit": 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'a'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 447| 447| { | 448| 448| "name": "Player 2", | 449| 449| "civ": "mace", | 450| |- "color": { "r":1, "g":0, "b":0, "a":1 }, | | 450|+ "color": { "r":1, "g":0, "b":0, "a": 1 }, | 451| 451| "controlsAll": true, | 452| 452| "popCount": 40, | 453| 453| "popLimit": 30, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 469| 469| "isMutualAlly": [false, false], | 470| 470| "isNeutral": [false, false], | 471| 471| "isEnemy": [false, false], | 472| |- "entityLimits": {"Bar": 20}, | | 472|+ "entityLimits": { "Bar": 20}, | 473| 473| "entityCounts": {"Bar": 0}, | 474| 474| "entityLimitChangers": {"Bar": {}}, | 475| 475| "researchQueued": new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 469| 469| "isMutualAlly": [false, false], | 470| 470| "isNeutral": [false, false], | 471| 471| "isEnemy": [false, false], | 472| |- "entityLimits": {"Bar": 20}, | | 472|+ "entityLimits": {"Bar": 20 }, | 473| 473| "entityCounts": {"Bar": 0}, | 474| 474| "entityLimitChangers": {"Bar": {}}, | 475| 475| "researchQueued": new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 470| 470| "isNeutral": [false, false], | 471| 471| "isEnemy": [false, false], | 472| 472| "entityLimits": {"Bar": 20}, | 473| |- "entityCounts": {"Bar": 0}, | | 473|+ "entityCounts": { "Bar": 0}, | 474| 474| "entityLimitChangers": {"Bar": {}}, | 475| 475| "researchQueued": new Map(), | 476| 476| "researchStarted": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 470| 470| "isNeutral": [false, false], | 471| 471| "isEnemy": [false, false], | 472| 472| "entityLimits": {"Bar": 20}, | 473| |- "entityCounts": {"Bar": 0}, | | 473|+ "entityCounts": {"Bar": 0 }, | 474| 474| "entityLimitChangers": {"Bar": {}}, | 475| 475| "researchQueued": new Map(), | 476| 476| "researchStarted": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 471| 471| "isEnemy": [false, false], | 472| 472| "entityLimits": {"Bar": 20}, | 473| 473| "entityCounts": {"Bar": 0}, | 474| |- "entityLimitChangers": {"Bar": {}}, | | 474|+ "entityLimitChangers": { "Bar": {}}, | 475| 475| "researchQueued": new Map(), | 476| 476| "researchStarted": new Set(), | 477| 477| "researchedTechs": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 471| 471| "isEnemy": [false, false], | 472| 472| "entityLimits": {"Bar": 20}, | 473| 473| "entityCounts": {"Bar": 0}, | 474| |- "entityLimitChangers": {"Bar": {}}, | | 474|+ "entityLimitChangers": {"Bar": {} }, | 475| 475| "researchQueued": new Map(), | 476| 476| "researchStarted": new Set(), | 477| 477| "researchedTechs": new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetEntitiesList' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 525| 525| | 526| 526| | 527| 527| AddMock(10, IID_Builder, { | 528| |- GetEntitiesList: function() { | | 528|+ "GetEntitiesList": function() { | 529| 529| return ["test1", "test2"]; | 530| 530| }, | 531| 531| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetHitpoints' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 531| 531| }); | 532| 532| | 533| 533| AddMock(10, IID_Health, { | 534| |- GetHitpoints: function() { return 50; }, | | 534|+ "GetHitpoints": function() { return 50; }, | 535| 535| GetMaxHitpoints: function() { return 60; }, | 536| 536| IsRepairable: function() { return false; }, | 537| 537| IsUnhealable: function() { return false; } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetMaxHitpoints' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 532| 532| | 533| 533| AddMock(10, IID_Health, { | 534| 534| GetHitpoints: function() { return 50; }, | 535| |- GetMaxHitpoints: function() { return 60; }, | | 535|+ "GetMaxHitpoints": function() { return 60; }, | 536| 536| IsRepairable: function() { return false; }, | 537| 537| IsUnhealable: function() { return false; } | 538| 538| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsRepairable' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 533| 533| AddMock(10, IID_Health, { | 534| 534| GetHitpoints: function() { return 50; }, | 535| 535| GetMaxHitpoints: function() { return 60; }, | 536| |- IsRepairable: function() { return false; }, | | 536|+ "IsRepairable": function() { return false; }, | 537| 537| IsUnhealable: function() { return false; } | 538| 538| }); | 539| 539| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsUnhealable' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 534| 534| GetHitpoints: function() { return 50; }, | 535| 535| GetMaxHitpoints: function() { return 60; }, | 536| 536| IsRepairable: function() { return false; }, | 537| |- IsUnhealable: function() { return false; } | | 537|+ "IsUnhealable": function() { return false; } | 538| 538| }); | 539| 539| | 540| 540| AddMock(10, IID_Identity, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetClassesList' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 538| 538| }); | 539| 539| | 540| 540| AddMock(10, IID_Identity, { | 541| |- GetClassesList: function() { return ["class1", "class2"]; }, | | 541|+ "GetClassesList": function() { return ["class1", "class2"]; }, | 542| 542| GetVisibleClassesList: function() { return ["class3", "class4"]; }, | 543| 543| GetRank: function() { return "foo"; }, | 544| 544| GetSelectionGroupName: function() { return "Selection Group Name"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetVisibleClassesList' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 539| 539| | 540| 540| AddMock(10, IID_Identity, { | 541| 541| GetClassesList: function() { return ["class1", "class2"]; }, | 542| |- GetVisibleClassesList: function() { return ["class3", "class4"]; }, | | 542|+ "GetVisibleClassesList": function() { return ["class3", "class4"]; }, | 543| 543| GetRank: function() { return "foo"; }, | 544| 544| GetSelectionGroupName: function() { return "Selection Group Name"; }, | 545| 545| HasClass: function() { return true; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetRank' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 540| 540| AddMock(10, IID_Identity, { | 541| 541| GetClassesList: function() { return ["class1", "class2"]; }, | 542| 542| GetVisibleClassesList: function() { return ["class3", "class4"]; }, | 543| |- GetRank: function() { return "foo"; }, | | 543|+ "GetRank": function() { return "foo"; }, | 544| 544| GetSelectionGroupName: function() { return "Selection Group Name"; }, | 545| 545| HasClass: function() { return true; }, | 546| 546| IsUndeletable: function() { return false; } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSelectionGroupName' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 541| 541| GetClassesList: function() { return ["class1", "class2"]; }, | 542| 542| GetVisibleClassesList: function() { return ["class3", "class4"]; }, | 543| 543| GetRank: function() { return "foo"; }, | 544| |- GetSelectionGroupName: function() { return "Selection Group Name"; }, | | 544|+ "GetSelectionGroupName": function() { return "Selection Group Name"; }, | 545| 545| HasClass: function() { return true; }, | 546| 546| IsUndeletable: function() { return false; } | 547| 547| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasClass' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 542| 542| GetVisibleClassesList: function() { return ["class3", "class4"]; }, | 543| 543| GetRank: function() { return "foo"; }, | 544| 544| GetSelectionGroupName: function() { return "Selection Group Name"; }, | 545| |- HasClass: function() { return true; }, | | 545|+ "HasClass": function() { return true; }, | 546| 546| IsUndeletable: function() { return false; } | 547| 547| }); | 548| 548| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsUndeletable' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 543| 543| GetRank: function() { return "foo"; }, | 544| 544| GetSelectionGroupName: function() { return "Selection Group Name"; }, | 545| 545| HasClass: function() { return true; }, | 546| |- IsUndeletable: function() { return false; } | | 546|+ "IsUndeletable": function() { return false; } | 547| 547| }); | 548| 548| | 549| 549| AddMock(10, IID_Position, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTurretParent' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 547| 547| }); | 548| 548| | 549| 549| AddMock(10, IID_Position, { | 550| |- GetTurretParent: function() {return INVALID_ENTITY;}, | | 550|+ "GetTurretParent": function() {return INVALID_ENTITY;}, | 551| 551| GetPosition: function() { | 552| 552| return {x:1, y:2, z:3}; | 553| 553| }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPosition' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 548| 548| | 549| 549| AddMock(10, IID_Position, { | 550| 550| GetTurretParent: function() {return INVALID_ENTITY;}, | 551| |- GetPosition: function() { | | 551|+ "GetPosition": function() { | 552| 552| return {x:1, y:2, z:3}; | 553| 553| }, | 554| 554| IsInWorld: function() { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 549| 549| AddMock(10, IID_Position, { | 550| 550| GetTurretParent: function() {return INVALID_ENTITY;}, | 551| 551| GetPosition: function() { | 552| |- return {x:1, y:2, z:3}; | | 552|+ return { x:1, y:2, z:3}; | 553| 553| }, | 554| 554| IsInWorld: function() { | 555| 555| return true; | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'x' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 549| 549| AddMock(10, IID_Position, { | 550| 550| GetTurretParent: function() {return INVALID_ENTITY;}, | 551| 551| GetPosition: function() { | 552| |- return {x:1, y:2, z:3}; | | 552|+ return {"x":1, y:2, z:3}; | 553| 553| }, | 554| 554| IsInWorld: function() { | 555| 555| return true; | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'x'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 549| 549| AddMock(10, IID_Position, { | 550| 550| GetTurretParent: function() {return INVALID_ENTITY;}, | 551| 551| GetPosition: function() { | 552| |- return {x:1, y:2, z:3}; | | 552|+ return {x: 1, y:2, z:3}; | 553| 553| }, | 554| 554| IsInWorld: function() { | 555| 555| return true; | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'y' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 549| 549| AddMock(10, IID_Position, { | 550| 550| GetTurretParent: function() {return INVALID_ENTITY;}, | 551| 551| GetPosition: function() { | 552| |- return {x:1, y:2, z:3}; | | 552|+ return {x:1, "y":2, z:3}; | 553| 553| }, | 554| 554| IsInWorld: function() { | 555| 555| return true; | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'y'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 549| 549| AddMock(10, IID_Position, { | 550| 550| GetTurretParent: function() {return INVALID_ENTITY;}, | 551| 551| GetPosition: function() { | 552| |- return {x:1, y:2, z:3}; | | 552|+ return {x:1, y: 2, z:3}; | 553| 553| }, | 554| 554| IsInWorld: function() { | 555| 555| return true; | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'z' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 549| 549| AddMock(10, IID_Position, { | 550| 550| GetTurretParent: function() {return INVALID_ENTITY;}, | 551| 551| GetPosition: function() { | 552| |- return {x:1, y:2, z:3}; | | 552|+ return {x:1, y:2, "z":3}; | 553| 553| }, | 554| 554| IsInWorld: function() { | 555| 555| return true; | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'z'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 549| 549| AddMock(10, IID_Position, { | 550| 550| GetTurretParent: function() {return INVALID_ENTITY;}, | 551| 551| GetPosition: function() { | 552| |- return {x:1, y:2, z:3}; | | 552|+ return {x:1, y:2, z: 3}; | 553| 553| }, | 554| 554| IsInWorld: function() { | 555| 555| return true; | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 549| 549| AddMock(10, IID_Position, { | 550| 550| GetTurretParent: function() {return INVALID_ENTITY;}, | 551| 551| GetPosition: function() { | 552| |- return {x:1, y:2, z:3}; | | 552|+ return {x:1, y:2, z:3 }; | 553| 553| }, | 554| 554| IsInWorld: function() { | 555| 555| return true; | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsInWorld' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 551| 551| GetPosition: function() { | 552| 552| return {x:1, y:2, z:3}; | 553| 553| }, | 554| |- IsInWorld: function() { | | 554|+ "IsInWorld": function() { | 555| 555| return true; | 556| 556| } | 557| 557| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 575| 575| "selectionGroupName": "Selection Group Name", | 576| 576| "canDelete": true | 577| 577| }, | 578| |- "position": {x:1, y:2, z:3}, | | 578|+ "position": { x:1, y:2, z:3}, | 579| 579| "hitpoints": 50, | 580| 580| "maxHitpoints": 60, | 581| 581| "needsRepair": false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'x' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 575| 575| "selectionGroupName": "Selection Group Name", | 576| 576| "canDelete": true | 577| 577| }, | 578| |- "position": {x:1, y:2, z:3}, | | 578|+ "position": {"x":1, y:2, z:3}, | 579| 579| "hitpoints": 50, | 580| 580| "maxHitpoints": 60, | 581| 581| "needsRepair": false, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'x'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 575| 575| "selectionGroupName": "Selection Group Name", | 576| 576| "canDelete": true | 577| 577| }, | 578| |- "position": {x:1, y:2, z:3}, | | 578|+ "position": {x: 1, y:2, z:3}, | 579| 579| "hitpoints": 50, | 580| 580| "maxHitpoints": 60, | 581| 581| "needsRepair": false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'y' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 575| 575| "selectionGroupName": "Selection Group Name", | 576| 576| "canDelete": true | 577| 577| }, | 578| |- "position": {x:1, y:2, z:3}, | | 578|+ "position": {x:1, "y":2, z:3}, | 579| 579| "hitpoints": 50, | 580| 580| "maxHitpoints": 60, | 581| 581| "needsRepair": false, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'y'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 575| 575| "selectionGroupName": "Selection Group Name", | 576| 576| "canDelete": true | 577| 577| }, | 578| |- "position": {x:1, y:2, z:3}, | | 578|+ "position": {x:1, y: 2, z:3}, | 579| 579| "hitpoints": 50, | 580| 580| "maxHitpoints": 60, | 581| 581| "needsRepair": false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'z' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 575| 575| "selectionGroupName": "Selection Group Name", | 576| 576| "canDelete": true | 577| 577| }, | 578| |- "position": {x:1, y:2, z:3}, | | 578|+ "position": {x:1, y:2, "z":3}, | 579| 579| "hitpoints": 50, | 580| 580| "maxHitpoints": 60, | 581| 581| "needsRepair": false, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'z'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 575| 575| "selectionGroupName": "Selection Group Name", | 576| 576| "canDelete": true | 577| 577| }, | 578| |- "position": {x:1, y:2, z:3}, | | 578|+ "position": {x:1, y:2, z: 3}, | 579| 579| "hitpoints": 50, | 580| 580| "maxHitpoints": 60, | 581| 581| "needsRepair": false, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 575| 575| "selectionGroupName": "Selection Group Name", | 576| 576| "canDelete": true | 577| 577| }, | 578| |- "position": {x:1, y:2, z:3}, | | 578|+ "position": {x:1, y:2, z:3 }, | 579| 579| "hitpoints": 50, | 580| 580| "maxHitpoints": 60, | 581| 581| "needsRepair": false, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'isBarterMarket'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 582| 582| "needsHeal": true, | 583| 583| "builder": true, | 584| 584| "visibility": "visible", | 585| |- "isBarterMarket":true, | | 585|+ "isBarterMarket": true, | 586| 586| "resourceTrickle": { | 587| 587| "interval": 1250, | 588| 588| "rates": { "food": 2, "wood": 3, "stone": 5, "metal": 9 } binaries/data/mods/public/simulation/components/AlertRaiser.js | 123| » » let·units·=·cmpGarrisonHolder.GetEntities().filter(ent·=>·{ | | [NORMAL] ESLintBear (no-shadow): | | 'units' is already declared in the upper scope. binaries/data/mods/public/gui/session/unit_actions.js | 557| » » » switch·(tradingDetails.type) | | [NORMAL] ESLintBear (default-case): | | Expected a default case. Executing section cli... Link to build: https://jenkins.wildfiregames.com/job/docker-differential/876/display/redirect Comment Actions Build failure - The Moirai have given mortals hearts that can endure. Link to build: https://jenkins.wildfiregames.com/job/vs2015-differential/527/display/redirect Comment Actions If someone wanted to make things even more microable, he could restrict the count per class ^^ and per size.
Comment Actions Successful build - Chance fights ever on the side of the prudent. Linter detected issues: Executing section Source... Executing section JS... | | [NORMAL] ESLintBear (operator-linebreak): | | '||' should be placed at the end of the line. |----| | /zpool0/trunk/binaries/data/mods/public/globalscripts/Templates.js | |++++| /zpool0/trunk/binaries/data/mods/public/globalscripts/Templates.js | 87| 87| // If the elements are still strings, split them by space or by '+' | 88| 88| if (typeof sublist == "string") | 89| 89| sublist = sublist.split(/[+\s]+/); | 90| |- if (sublist.every(c => (c[0] == "!" && classes.indexOf(c.substr(1)) == -1) | 91| |- || (c[0] != "!" && classes.indexOf(c) != -1))) | | 90|+ if (sublist.every(c => (c[0] == "!" && classes.indexOf(c.substr(1)) == -1) || | | 91|+ (c[0] != "!" && classes.indexOf(c) != -1))) | 92| 92| return true; | 93| 93| } | 94| 94| binaries/data/mods/public/globalscripts/Templates.js | 91| » » ····················||·(c[0]·!=·"!"·&&·classes.indexOf(c)·!=·-1))) | | [NORMAL] JSHintBear: | | Misleading line break before '||'; readers may interpret this as an expression boundary. binaries/data/mods/public/gui/session/unit_actions.js | 557| » » » switch·(tradingDetails.type) | | [NORMAL] ESLintBear (default-case): | | Expected a default case. | | [NORMAL] ESLintBear (indent): | | Expected indentation of 3 tabs but found 4. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | 75| 75| | 76| 76| if (i == 35) | 77| 77| AddMock(i, IID_Garrisonable, { | 78| |- "GetSize": () => 9 | | 78|+ "GetSize": () => 9 | 79| 79| }); | 80| 80| else | 81| 81| AddMock(i, IID_Garrisonable, { | | [NORMAL] ESLintBear (indent): | | Expected indentation of 2 tabs but found 3. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | 76| 76| if (i == 35) | 77| 77| AddMock(i, IID_Garrisonable, { | 78| 78| "GetSize": () => 9 | 79| |- }); | | 79|+ }); | 80| 80| else | 81| 81| AddMock(i, IID_Garrisonable, { | 82| 82| "GetSize": () => 1 | | [NORMAL] ESLintBear (indent): | | Expected indentation of 3 tabs but found 4. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | 79| 79| }); | 80| 80| else | 81| 81| AddMock(i, IID_Garrisonable, { | 82| |- "GetSize": () => 1 | | 82|+ "GetSize": () => 1 | 83| 83| }); | 84| 84| | 85| 85| AddMock(i, IID_Position, { | | [NORMAL] ESLintBear (indent): | | Expected indentation of 2 tabs but found 3. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | 80| 80| else | 81| 81| AddMock(i, IID_Garrisonable, { | 82| 82| "GetSize": () => 1 | 83| |- }); | | 83|+ }); | 84| 84| | 85| 85| AddMock(i, IID_Position, { | 86| 86| "GetHeightOffset": () => 0, binaries/data/mods/public/simulation/ai/common-api/entity.js | 814| » » if·(this.position()·!==·undefined)·{ | | [NORMAL] ESLintBear (brace-rules/brace-on-same-line): | | Opening curly brace appears on the same line as controlling statement. binaries/data/mods/public/simulation/ai/common-api/entity.js | 831| » » if·(this.position()·!==·undefined·&&·unitToFleeFrom.position()·!==·undefined)·{ | | [NORMAL] ESLintBear (brace-rules/brace-on-same-line): | | Opening curly brace appears on the same line as controlling statement. binaries/data/mods/public/simulation/ai/common-api/entity.js | 961| }(API3); | | [MAJOR] ESLintBear (no-use-before-define): | | 'API3' was used before it was defined. | | [NORMAL] ESLintBear (indent): | | Expected indentation of 4 tabs but found 3. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 48| 48| "GetResource": resource => ({ | 49| 49| "aiAnalysisInfluenceGroup": | 50| 50| resource == "food" ? "ignore" : | 51| |- resource == "wood" ? "abundant" : "sparse" | | 51|+ resource == "wood" ? "abundant" : "sparse" | 52| 52| }) | 53| 53| }; | 54| 54| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPrices' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 56| 56| | 57| 57| | 58| 58| AddMock(SYSTEM_ENTITY, IID_Barter, { | 59| |- GetPrices: function() { | | 59|+ "GetPrices": function() { | 60| 60| return { | 61| 61| "buy": { "food": 150 }, | 62| 62| "sell": { "food": 25 } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'PlayerHasMarket' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 62| 62| "sell": { "food": 25 } | 63| 63| }; | 64| 64| }, | 65| |- PlayerHasMarket: function () { return false; } | | 65|+ "PlayerHasMarket": function () { return false; } | 66| 66| }); | 67| 67| | 68| 68| AddMock(SYSTEM_ENTITY, IID_EndGameManager, { | | [NORMAL] ESLintBear (space-before-function-paren): | | Unexpected space before function parentheses. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 62| 62| "sell": { "food": 25 } | 63| 63| }; | 64| 64| }, | 65| |- PlayerHasMarket: function () { return false; } | | 65|+ PlayerHasMarket: function() { return false; } | 66| 66| }); | 67| 67| | 68| 68| AddMock(SYSTEM_ENTITY, IID_EndGameManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetVictoryConditions' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 66| 66| }); | 67| 67| | 68| 68| AddMock(SYSTEM_ENTITY, IID_EndGameManager, { | 69| |- GetVictoryConditions: () => ["conquest", "wonder"], | | 69|+ "GetVictoryConditions": () => ["conquest", "wonder"], | 70| 70| GetAlliedVictory: function() { return false; } | 71| 71| }); | 72| 72| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetAlliedVictory' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 67| 67| | 68| 68| AddMock(SYSTEM_ENTITY, IID_EndGameManager, { | 69| 69| GetVictoryConditions: () => ["conquest", "wonder"], | 70| |- GetAlliedVictory: function() { return false; } | | 70|+ "GetAlliedVictory": function() { return false; } | 71| 71| }); | 72| 72| | 73| 73| AddMock(SYSTEM_ENTITY, IID_PlayerManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetNumPlayers' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 71| 71| }); | 72| 72| | 73| 73| AddMock(SYSTEM_ENTITY, IID_PlayerManager, { | 74| |- GetNumPlayers: function() { return 2; }, | | 74|+ "GetNumPlayers": function() { return 2; }, | 75| 75| GetPlayerByID: function(id) { TS_ASSERT(id === 0 || id === 1); return 100+id; } | 76| 76| }); | 77| 77| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPlayerByID' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 72| 72| | 73| 73| AddMock(SYSTEM_ENTITY, IID_PlayerManager, { | 74| 74| GetNumPlayers: function() { return 2; }, | 75| |- GetPlayerByID: function(id) { TS_ASSERT(id === 0 || id === 1); return 100+id; } | | 75|+ "GetPlayerByID": function(id) { TS_ASSERT(id === 0 || id === 1); return 100+id; } | 76| 76| }); | 77| 77| | 78| 78| AddMock(SYSTEM_ENTITY, IID_RangeManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLosVisibility' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 76| 76| }); | 77| 77| | 78| 78| AddMock(SYSTEM_ENTITY, IID_RangeManager, { | 79| |- GetLosVisibility: function(ent, player) { return "visible"; }, | | 79|+ "GetLosVisibility": function(ent, player) { return "visible"; }, | 80| 80| GetLosCircular: function() { return false; } | 81| 81| }); | 82| 82| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLosCircular' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 77| 77| | 78| 78| AddMock(SYSTEM_ENTITY, IID_RangeManager, { | 79| 79| GetLosVisibility: function(ent, player) { return "visible"; }, | 80| |- GetLosCircular: function() { return false; } | | 80|+ "GetLosCircular": function() { return false; } | 81| 81| }); | 82| 82| | 83| 83| AddMock(SYSTEM_ENTITY, IID_TemplateManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCurrentTemplateName' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 81| 81| }); | 82| 82| | 83| 83| AddMock(SYSTEM_ENTITY, IID_TemplateManager, { | 84| |- GetCurrentTemplateName: function(ent) { return "example"; }, | | 84|+ "GetCurrentTemplateName": function(ent) { return "example"; }, | 85| 85| GetTemplate: function(name) { return ""; } | 86| 86| }); | 87| 87| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTemplate' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 82| 82| | 83| 83| AddMock(SYSTEM_ENTITY, IID_TemplateManager, { | 84| 84| GetCurrentTemplateName: function(ent) { return "example"; }, | 85| |- GetTemplate: function(name) { return ""; } | | 85|+ "GetTemplate": function(name) { return ""; } | 86| 86| }); | 87| 87| | 88| 88| AddMock(SYSTEM_ENTITY, IID_Timer, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTime' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 86| 86| }); | 87| 87| | 88| 88| AddMock(SYSTEM_ENTITY, IID_Timer, { | 89| |- GetTime: function() { return 0; }, | | 89|+ "GetTime": function() { return 0; }, | 90| 90| SetTimeout: function(ent, iid, funcname, time, data) { return 0; } | 91| 91| }); | 92| 92| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'SetTimeout' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 87| 87| | 88| 88| AddMock(SYSTEM_ENTITY, IID_Timer, { | 89| 89| GetTime: function() { return 0; }, | 90| |- SetTimeout: function(ent, iid, funcname, time, data) { return 0; } | | 90|+ "SetTimeout": function(ent, iid, funcname, time, data) { return 0; } | 91| 91| }); | 92| 92| | 93| 93| AddMock(100, IID_Player, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetName' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 91| 91| }); | 92| 92| | 93| 93| AddMock(100, IID_Player, { | 94| |- GetName: function() { return "Player 1"; }, | | 94|+ "GetName": function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| 96| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCiv' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 92| 92| | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| |- GetCiv: function() { return "gaia"; }, | | 95|+ "GetCiv": function() { return "gaia"; }, | 96| 96| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetColor' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 96|+ "GetColor": function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'r' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 96|+ GetColor: function() { return { "r": 1, g: 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'g' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 96|+ GetColor: function() { return { r: 1, "g": 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'b' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 96|+ GetColor: function() { return { r: 1, g: 1, "b": 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'a' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 96|+ GetColor: function() { return { r: 1, g: 1, b: 1, "a": 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 96|+ GetColor: function() { return { r: 1, g: 1, b: 1, a: 1 }; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'CanControlAllUnits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| 96| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 97| |- CanControlAllUnits: function() { return false; }, | | 97|+ "CanControlAllUnits": function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | 100| 100| GetMaxPopulation: function() { return 200; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPopulationCount' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 95| 95| GetCiv: function() { return "gaia"; }, | 96| 96| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| |- GetPopulationCount: function() { return 10; }, | | 98|+ "GetPopulationCount": function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | 100| 100| GetMaxPopulation: function() { return 200; }, | 101| 101| GetResourceCounts: function() { return { food: 100 }; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPopulationLimit' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 96| 96| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| |- GetPopulationLimit: function() { return 20; }, | | 99|+ "GetPopulationLimit": function() { return 20; }, | 100| 100| GetMaxPopulation: function() { return 200; }, | 101| 101| GetResourceCounts: function() { return { food: 100 }; }, | 102| 102| GetPanelEntities: function() { return []; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetMaxPopulation' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | 100| |- GetMaxPopulation: function() { return 200; }, | | 100|+ "GetMaxPopulation": function() { return 200; }, | 101| 101| GetResourceCounts: function() { return { food: 100 }; }, | 102| 102| GetPanelEntities: function() { return []; }, | 103| 103| IsTrainingBlocked: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetResourceCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | 100| 100| GetMaxPopulation: function() { return 200; }, | 101| |- GetResourceCounts: function() { return { food: 100 }; }, | | 101|+ "GetResourceCounts": function() { return { food: 100 }; }, | 102| 102| GetPanelEntities: function() { return []; }, | 103| 103| IsTrainingBlocked: function() { return false; }, | 104| 104| GetState: function() { return "active"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | 100| 100| GetMaxPopulation: function() { return 200; }, | 101| |- GetResourceCounts: function() { return { food: 100 }; }, | | 101|+ GetResourceCounts: function() { return { "food": 100 }; }, | 102| 102| GetPanelEntities: function() { return []; }, | 103| 103| IsTrainingBlocked: function() { return false; }, | 104| 104| GetState: function() { return "active"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPanelEntities' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 99| 99| GetPopulationLimit: function() { return 20; }, | 100| 100| GetMaxPopulation: function() { return 200; }, | 101| 101| GetResourceCounts: function() { return { food: 100 }; }, | 102| |- GetPanelEntities: function() { return []; }, | | 102|+ "GetPanelEntities": function() { return []; }, | 103| 103| IsTrainingBlocked: function() { return false; }, | 104| 104| GetState: function() { return "active"; }, | 105| 105| GetTeam: function() { return -1; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsTrainingBlocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 100| 100| GetMaxPopulation: function() { return 200; }, | 101| 101| GetResourceCounts: function() { return { food: 100 }; }, | 102| 102| GetPanelEntities: function() { return []; }, | 103| |- IsTrainingBlocked: function() { return false; }, | | 103|+ "IsTrainingBlocked": function() { return false; }, | 104| 104| GetState: function() { return "active"; }, | 105| 105| GetTeam: function() { return -1; }, | 106| 106| GetLockTeams: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetState' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 101| 101| GetResourceCounts: function() { return { food: 100 }; }, | 102| 102| GetPanelEntities: function() { return []; }, | 103| 103| IsTrainingBlocked: function() { return false; }, | 104| |- GetState: function() { return "active"; }, | | 104|+ "GetState": function() { return "active"; }, | 105| 105| GetTeam: function() { return -1; }, | 106| 106| GetLockTeams: function() { return false; }, | 107| 107| GetCheatsEnabled: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTeam' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 102| 102| GetPanelEntities: function() { return []; }, | 103| 103| IsTrainingBlocked: function() { return false; }, | 104| 104| GetState: function() { return "active"; }, | 105| |- GetTeam: function() { return -1; }, | | 105|+ "GetTeam": function() { return -1; }, | 106| 106| GetLockTeams: function() { return false; }, | 107| 107| GetCheatsEnabled: function() { return false; }, | 108| 108| GetDiplomacy: function() { return [-1, 1]; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLockTeams' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 103| 103| IsTrainingBlocked: function() { return false; }, | 104| 104| GetState: function() { return "active"; }, | 105| 105| GetTeam: function() { return -1; }, | 106| |- GetLockTeams: function() { return false; }, | | 106|+ "GetLockTeams": function() { return false; }, | 107| 107| GetCheatsEnabled: function() { return false; }, | 108| 108| GetDiplomacy: function() { return [-1, 1]; }, | 109| 109| IsAlly: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCheatsEnabled' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 104| 104| GetState: function() { return "active"; }, | 105| 105| GetTeam: function() { return -1; }, | 106| 106| GetLockTeams: function() { return false; }, | 107| |- GetCheatsEnabled: function() { return false; }, | | 107|+ "GetCheatsEnabled": function() { return false; }, | 108| 108| GetDiplomacy: function() { return [-1, 1]; }, | 109| 109| IsAlly: function() { return false; }, | 110| 110| IsMutualAlly: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDiplomacy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 105| 105| GetTeam: function() { return -1; }, | 106| 106| GetLockTeams: function() { return false; }, | 107| 107| GetCheatsEnabled: function() { return false; }, | 108| |- GetDiplomacy: function() { return [-1, 1]; }, | | 108|+ "GetDiplomacy": function() { return [-1, 1]; }, | 109| 109| IsAlly: function() { return false; }, | 110| 110| IsMutualAlly: function() { return false; }, | 111| 111| IsNeutral: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 106| 106| GetLockTeams: function() { return false; }, | 107| 107| GetCheatsEnabled: function() { return false; }, | 108| 108| GetDiplomacy: function() { return [-1, 1]; }, | 109| |- IsAlly: function() { return false; }, | | 109|+ "IsAlly": function() { return false; }, | 110| 110| IsMutualAlly: function() { return false; }, | 111| 111| IsNeutral: function() { return false; }, | 112| 112| IsEnemy: function() { return true; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsMutualAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 107| 107| GetCheatsEnabled: function() { return false; }, | 108| 108| GetDiplomacy: function() { return [-1, 1]; }, | 109| 109| IsAlly: function() { return false; }, | 110| |- IsMutualAlly: function() { return false; }, | | 110|+ "IsMutualAlly": function() { return false; }, | 111| 111| IsNeutral: function() { return false; }, | 112| 112| IsEnemy: function() { return true; }, | 113| 113| GetDisabledTemplates: function() { return {}; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsNeutral' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 108| 108| GetDiplomacy: function() { return [-1, 1]; }, | 109| 109| IsAlly: function() { return false; }, | 110| 110| IsMutualAlly: function() { return false; }, | 111| |- IsNeutral: function() { return false; }, | | 111|+ "IsNeutral": function() { return false; }, | 112| 112| IsEnemy: function() { return true; }, | 113| 113| GetDisabledTemplates: function() { return {}; }, | 114| 114| GetDisabledTechnologies: function() { return {}; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsEnemy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 109| 109| IsAlly: function() { return false; }, | 110| 110| IsMutualAlly: function() { return false; }, | 111| 111| IsNeutral: function() { return false; }, | 112| |- IsEnemy: function() { return true; }, | | 112|+ "IsEnemy": function() { return true; }, | 113| 113| GetDisabledTemplates: function() { return {}; }, | 114| 114| GetDisabledTechnologies: function() { return {}; }, | 115| 115| GetSpyCostMultiplier: function() { return 1; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDisabledTemplates' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 110| 110| IsMutualAlly: function() { return false; }, | 111| 111| IsNeutral: function() { return false; }, | 112| 112| IsEnemy: function() { return true; }, | 113| |- GetDisabledTemplates: function() { return {}; }, | | 113|+ "GetDisabledTemplates": function() { return {}; }, | 114| 114| GetDisabledTechnologies: function() { return {}; }, | 115| 115| GetSpyCostMultiplier: function() { return 1; }, | 116| 116| HasSharedDropsites: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDisabledTechnologies' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 111| 111| IsNeutral: function() { return false; }, | 112| 112| IsEnemy: function() { return true; }, | 113| 113| GetDisabledTemplates: function() { return {}; }, | 114| |- GetDisabledTechnologies: function() { return {}; }, | | 114|+ "GetDisabledTechnologies": function() { return {}; }, | 115| 115| GetSpyCostMultiplier: function() { return 1; }, | 116| 116| HasSharedDropsites: function() { return false; }, | 117| 117| HasSharedLos: function() { return false; } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSpyCostMultiplier' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 112| 112| IsEnemy: function() { return true; }, | 113| 113| GetDisabledTemplates: function() { return {}; }, | 114| 114| GetDisabledTechnologies: function() { return {}; }, | 115| |- GetSpyCostMultiplier: function() { return 1; }, | | 115|+ "GetSpyCostMultiplier": function() { return 1; }, | 116| 116| HasSharedDropsites: function() { return false; }, | 117| 117| HasSharedLos: function() { return false; } | 118| 118| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasSharedDropsites' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 113| 113| GetDisabledTemplates: function() { return {}; }, | 114| 114| GetDisabledTechnologies: function() { return {}; }, | 115| 115| GetSpyCostMultiplier: function() { return 1; }, | 116| |- HasSharedDropsites: function() { return false; }, | | 116|+ "HasSharedDropsites": function() { return false; }, | 117| 117| HasSharedLos: function() { return false; } | 118| 118| }); | 119| 119| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasSharedLos' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 114| 114| GetDisabledTechnologies: function() { return {}; }, | 115| 115| GetSpyCostMultiplier: function() { return 1; }, | 116| 116| HasSharedDropsites: function() { return false; }, | 117| |- HasSharedLos: function() { return false; } | | 117|+ "HasSharedLos": function() { return false; } | 118| 118| }); | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLimits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 118| 118| }); | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | 121| |- GetLimits: function() { return {"Foo": 10}; }, | | 121|+ "GetLimits": function() { return {"Foo": 10}; }, | 122| 122| GetCounts: function() { return {"Foo": 5}; }, | 123| 123| GetLimitChangers: function() {return {"Foo": {}}; } | 124| 124| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 118| 118| }); | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | 121| |- GetLimits: function() { return {"Foo": 10}; }, | | 121|+ GetLimits: function() { return { "Foo": 10}; }, | 122| 122| GetCounts: function() { return {"Foo": 5}; }, | 123| 123| GetLimitChangers: function() {return {"Foo": {}}; } | 124| 124| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 118| 118| }); | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | 121| |- GetLimits: function() { return {"Foo": 10}; }, | | 121|+ GetLimits: function() { return {"Foo": 10 }; }, | 122| 122| GetCounts: function() { return {"Foo": 5}; }, | 123| 123| GetLimitChangers: function() {return {"Foo": {}}; } | 124| 124| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | 121| 121| GetLimits: function() { return {"Foo": 10}; }, | 122| |- GetCounts: function() { return {"Foo": 5}; }, | | 122|+ "GetCounts": function() { return {"Foo": 5}; }, | 123| 123| GetLimitChangers: function() {return {"Foo": {}}; } | 124| 124| }); | 125| 125| | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | 121| 121| GetLimits: function() { return {"Foo": 10}; }, | 122| |- GetCounts: function() { return {"Foo": 5}; }, | | 122|+ GetCounts: function() { return { "Foo": 5}; }, | 123| 123| GetLimitChangers: function() {return {"Foo": {}}; } | 124| 124| }); | 125| 125| | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | 121| 121| GetLimits: function() { return {"Foo": 10}; }, | 122| |- GetCounts: function() { return {"Foo": 5}; }, | | 122|+ GetCounts: function() { return {"Foo": 5 }; }, | 123| 123| GetLimitChangers: function() {return {"Foo": {}}; } | 124| 124| }); | 125| 125| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLimitChangers' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 120| 120| AddMock(100, IID_EntityLimits, { | 121| 121| GetLimits: function() { return {"Foo": 10}; }, | 122| 122| GetCounts: function() { return {"Foo": 5}; }, | 123| |- GetLimitChangers: function() {return {"Foo": {}}; } | | 123|+ "GetLimitChangers": function() {return {"Foo": {}}; } | 124| 124| }); | 125| 125| | 126| 126| AddMock(100, IID_TechnologyManager, { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 120| 120| AddMock(100, IID_EntityLimits, { | 121| 121| GetLimits: function() { return {"Foo": 10}; }, | 122| 122| GetCounts: function() { return {"Foo": 5}; }, | 123| |- GetLimitChangers: function() {return {"Foo": {}}; } | | 123|+ GetLimitChangers: function() {return { "Foo": {}}; } | 124| 124| }); | 125| 125| | 126| 126| AddMock(100, IID_TechnologyManager, { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 120| 120| AddMock(100, IID_EntityLimits, { | 121| 121| GetLimits: function() { return {"Foo": 10}; }, | 122| 122| GetCounts: function() { return {"Foo": 5}; }, | 123| |- GetLimitChangers: function() {return {"Foo": {}}; } | | 123|+ GetLimitChangers: function() {return {"Foo": {} }; } | 124| 124| }); | 125| 125| | 126| 126| AddMock(100, IID_TechnologyManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetBasicStatistics' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 133| 133| }); | 134| 134| | 135| 135| AddMock(100, IID_StatisticsTracker, { | 136| |- GetBasicStatistics: function() { | | 136|+ "GetBasicStatistics": function() { | 137| 137| return { | 138| 138| "resourcesGathered": { | 139| 139| "food": 100, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSequences' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 145| 145| "percentMapExplored": 10 | 146| 146| }; | 147| 147| }, | 148| |- GetSequences: function() { | | 148|+ "GetSequences": function() { | 149| 149| return { | 150| 150| "unitsTrained": [0, 10], | 151| 151| "unitsLost": [0, 42], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseTrainedUnitsCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 170| 170| "teamPeakPercentOfMapControlled": [0, 10] | 171| 171| }; | 172| 172| }, | 173| |- IncreaseTrainedUnitsCounter: function() { return 1; }, | | 173|+ "IncreaseTrainedUnitsCounter": function() { return 1; }, | 174| 174| IncreaseConstructedBuildingsCounter: function() { return 1; }, | 175| 175| IncreaseBuiltCivCentresCounter: function() { return 1; } | 176| 176| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseConstructedBuildingsCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 171| 171| }; | 172| 172| }, | 173| 173| IncreaseTrainedUnitsCounter: function() { return 1; }, | 174| |- IncreaseConstructedBuildingsCounter: function() { return 1; }, | | 174|+ "IncreaseConstructedBuildingsCounter": function() { return 1; }, | 175| 175| IncreaseBuiltCivCentresCounter: function() { return 1; } | 176| 176| }); | 177| 177| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseBuiltCivCentresCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 172| 172| }, | 173| 173| IncreaseTrainedUnitsCounter: function() { return 1; }, | 174| 174| IncreaseConstructedBuildingsCounter: function() { return 1; }, | 175| |- IncreaseBuiltCivCentresCounter: function() { return 1; } | | 175|+ "IncreaseBuiltCivCentresCounter": function() { return 1; } | 176| 176| }); | 177| 177| | 178| 178| AddMock(101, IID_Player, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetName' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 176| 176| }); | 177| 177| | 178| 178| AddMock(101, IID_Player, { | 179| |- GetName: function() { return "Player 2"; }, | | 179|+ "GetName": function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| 181| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCiv' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 177| 177| | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| |- GetCiv: function() { return "mace"; }, | | 180|+ "GetCiv": function() { return "mace"; }, | 181| 181| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetColor' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 181|+ "GetColor": function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'r' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 181|+ GetColor: function() { return { "r": 1, g: 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'g' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 181|+ GetColor: function() { return { r: 1, "g": 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'b' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 181|+ GetColor: function() { return { r: 1, g: 0, "b": 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'a' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 181|+ GetColor: function() { return { r: 1, g: 0, b: 0, "a": 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 181|+ GetColor: function() { return { r: 1, g: 0, b: 0, a: 1 }; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'CanControlAllUnits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| 181| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 182| |- CanControlAllUnits: function() { return true; }, | | 182|+ "CanControlAllUnits": function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | 185| 185| GetMaxPopulation: function() { return 300; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPopulationCount' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 180| 180| GetCiv: function() { return "mace"; }, | 181| 181| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| |- GetPopulationCount: function() { return 40; }, | | 183|+ "GetPopulationCount": function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | 185| 185| GetMaxPopulation: function() { return 300; }, | 186| 186| GetResourceCounts: function() { return { food: 200 }; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPopulationLimit' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 181| 181| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| |- GetPopulationLimit: function() { return 30; }, | | 184|+ "GetPopulationLimit": function() { return 30; }, | 185| 185| GetMaxPopulation: function() { return 300; }, | 186| 186| GetResourceCounts: function() { return { food: 200 }; }, | 187| 187| GetPanelEntities: function() { return []; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetMaxPopulation' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | 185| |- GetMaxPopulation: function() { return 300; }, | | 185|+ "GetMaxPopulation": function() { return 300; }, | 186| 186| GetResourceCounts: function() { return { food: 200 }; }, | 187| 187| GetPanelEntities: function() { return []; }, | 188| 188| IsTrainingBlocked: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetResourceCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | 185| 185| GetMaxPopulation: function() { return 300; }, | 186| |- GetResourceCounts: function() { return { food: 200 }; }, | | 186|+ "GetResourceCounts": function() { return { food: 200 }; }, | 187| 187| GetPanelEntities: function() { return []; }, | 188| 188| IsTrainingBlocked: function() { return false; }, | 189| 189| GetState: function() { return "active"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | 185| 185| GetMaxPopulation: function() { return 300; }, | 186| |- GetResourceCounts: function() { return { food: 200 }; }, | | 186|+ GetResourceCounts: function() { return { "food": 200 }; }, | 187| 187| GetPanelEntities: function() { return []; }, | 188| 188| IsTrainingBlocked: function() { return false; }, | 189| 189| GetState: function() { return "active"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPanelEntities' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 184| 184| GetPopulationLimit: function() { return 30; }, | 185| 185| GetMaxPopulation: function() { return 300; }, | 186| 186| GetResourceCounts: function() { return { food: 200 }; }, | 187| |- GetPanelEntities: function() { return []; }, | | 187|+ "GetPanelEntities": function() { return []; }, | 188| 188| IsTrainingBlocked: function() { return false; }, | 189| 189| GetState: function() { return "active"; }, | 190| 190| GetTeam: function() { return -1; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsTrainingBlocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 185| 185| GetMaxPopulation: function() { return 300; }, | 186| 186| GetResourceCounts: function() { return { food: 200 }; }, | 187| 187| GetPanelEntities: function() { return []; }, | 188| |- IsTrainingBlocked: function() { return false; }, | | 188|+ "IsTrainingBlocked": function() { return false; }, | 189| 189| GetState: function() { return "active"; }, | 190| 190| GetTeam: function() { return -1; }, | 191| 191| GetLockTeams: function() {return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetState' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 186| 186| GetResourceCounts: function() { return { food: 200 }; }, | 187| 187| GetPanelEntities: function() { return []; }, | 188| 188| IsTrainingBlocked: function() { return false; }, | 189| |- GetState: function() { return "active"; }, | | 189|+ "GetState": function() { return "active"; }, | 190| 190| GetTeam: function() { return -1; }, | 191| 191| GetLockTeams: function() {return false; }, | 192| 192| GetCheatsEnabled: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTeam' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 187| 187| GetPanelEntities: function() { return []; }, | 188| 188| IsTrainingBlocked: function() { return false; }, | 189| 189| GetState: function() { return "active"; }, | 190| |- GetTeam: function() { return -1; }, | | 190|+ "GetTeam": function() { return -1; }, | 191| 191| GetLockTeams: function() {return false; }, | 192| 192| GetCheatsEnabled: function() { return false; }, | 193| 193| GetDiplomacy: function() { return [-1, 1]; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLockTeams' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 188| 188| IsTrainingBlocked: function() { return false; }, | 189| 189| GetState: function() { return "active"; }, | 190| 190| GetTeam: function() { return -1; }, | 191| |- GetLockTeams: function() {return false; }, | | 191|+ "GetLockTeams": function() {return false; }, | 192| 192| GetCheatsEnabled: function() { return false; }, | 193| 193| GetDiplomacy: function() { return [-1, 1]; }, | 194| 194| IsAlly: function() { return true; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCheatsEnabled' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 189| 189| GetState: function() { return "active"; }, | 190| 190| GetTeam: function() { return -1; }, | 191| 191| GetLockTeams: function() {return false; }, | 192| |- GetCheatsEnabled: function() { return false; }, | | 192|+ "GetCheatsEnabled": function() { return false; }, | 193| 193| GetDiplomacy: function() { return [-1, 1]; }, | 194| 194| IsAlly: function() { return true; }, | 195| 195| IsMutualAlly: function() {return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDiplomacy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 190| 190| GetTeam: function() { return -1; }, | 191| 191| GetLockTeams: function() {return false; }, | 192| 192| GetCheatsEnabled: function() { return false; }, | 193| |- GetDiplomacy: function() { return [-1, 1]; }, | | 193|+ "GetDiplomacy": function() { return [-1, 1]; }, | 194| 194| IsAlly: function() { return true; }, | 195| 195| IsMutualAlly: function() {return false; }, | 196| 196| IsNeutral: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 191| 191| GetLockTeams: function() {return false; }, | 192| 192| GetCheatsEnabled: function() { return false; }, | 193| 193| GetDiplomacy: function() { return [-1, 1]; }, | 194| |- IsAlly: function() { return true; }, | | 194|+ "IsAlly": function() { return true; }, | 195| 195| IsMutualAlly: function() {return false; }, | 196| 196| IsNeutral: function() { return false; }, | 197| 197| IsEnemy: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsMutualAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 192| 192| GetCheatsEnabled: function() { return false; }, | 193| 193| GetDiplomacy: function() { return [-1, 1]; }, | 194| 194| IsAlly: function() { return true; }, | 195| |- IsMutualAlly: function() {return false; }, | | 195|+ "IsMutualAlly": function() {return false; }, | 196| 196| IsNeutral: function() { return false; }, | 197| 197| IsEnemy: function() { return false; }, | 198| 198| GetDisabledTemplates: function() { return {}; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsNeutral' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 193| 193| GetDiplomacy: function() { return [-1, 1]; }, | 194| 194| IsAlly: function() { return true; }, | 195| 195| IsMutualAlly: function() {return false; }, | 196| |- IsNeutral: function() { return false; }, | | 196|+ "IsNeutral": function() { return false; }, | 197| 197| IsEnemy: function() { return false; }, | 198| 198| GetDisabledTemplates: function() { return {}; }, | 199| 199| GetDisabledTechnologies: function() { return {}; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsEnemy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 194| 194| IsAlly: function() { return true; }, | 195| 195| IsMutualAlly: function() {return false; }, | 196| 196| IsNeutral: function() { return false; }, | 197| |- IsEnemy: function() { return false; }, | | 197|+ "IsEnemy": function() { return false; }, | 198| 198| GetDisabledTemplates: function() { return {}; }, | 199| 199| GetDisabledTechnologies: function() { return {}; }, | 200| 200| GetSpyCostMultiplier: function() { return 1; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDisabledTemplates' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 195| 195| IsMutualAlly: function() {return false; }, | 196| 196| IsNeutral: function() { return false; }, | 197| 197| IsEnemy: function() { return false; }, | 198| |- GetDisabledTemplates: function() { return {}; }, | | 198|+ "GetDisabledTemplates": function() { return {}; }, | 199| 199| GetDisabledTechnologies: function() { return {}; }, | 200| 200| GetSpyCostMultiplier: function() { return 1; }, | 201| 201| HasSharedDropsites: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDisabledTechnologies' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 196| 196| IsNeutral: function() { return false; }, | 197| 197| IsEnemy: function() { return false; }, | 198| 198| GetDisabledTemplates: function() { return {}; }, | 199| |- GetDisabledTechnologies: function() { return {}; }, | | 199|+ "GetDisabledTechnologies": function() { return {}; }, | 200| 200| GetSpyCostMultiplier: function() { return 1; }, | 201| 201| HasSharedDropsites: function() { return false; }, | 202| 202| HasSharedLos: function() { return false; } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSpyCostMultiplier' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 197| 197| IsEnemy: function() { return false; }, | 198| 198| GetDisabledTemplates: function() { return {}; }, | 199| 199| GetDisabledTechnologies: function() { return {}; }, | 200| |- GetSpyCostMultiplier: function() { return 1; }, | | 200|+ "GetSpyCostMultiplier": function() { return 1; }, | 201| 201| HasSharedDropsites: function() { return false; }, | 202| 202| HasSharedLos: function() { return false; } | 203| 203| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasSharedDropsites' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 198| 198| GetDisabledTemplates: function() { return {}; }, | 199| 199| GetDisabledTechnologies: function() { return {}; }, | 200| 200| GetSpyCostMultiplier: function() { return 1; }, | 201| |- HasSharedDropsites: function() { return false; }, | | 201|+ "HasSharedDropsites": function() { return false; }, | 202| 202| HasSharedLos: function() { return false; } | 203| 203| }); | 204| 204| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasSharedLos' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 199| 199| GetDisabledTechnologies: function() { return {}; }, | 200| 200| GetSpyCostMultiplier: function() { return 1; }, | 201| 201| HasSharedDropsites: function() { return false; }, | 202| |- HasSharedLos: function() { return false; } | | 202|+ "HasSharedLos": function() { return false; } | 203| 203| }); | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLimits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 203| 203| }); | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | 206| |- GetLimits: function() { return {"Bar": 20}; }, | | 206|+ "GetLimits": function() { return {"Bar": 20}; }, | 207| 207| GetCounts: function() { return {"Bar": 0}; }, | 208| 208| GetLimitChangers: function() {return {"Bar": {}}; } | 209| 209| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 203| 203| }); | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | 206| |- GetLimits: function() { return {"Bar": 20}; }, | | 206|+ GetLimits: function() { return { "Bar": 20}; }, | 207| 207| GetCounts: function() { return {"Bar": 0}; }, | 208| 208| GetLimitChangers: function() {return {"Bar": {}}; } | 209| 209| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 203| 203| }); | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | 206| |- GetLimits: function() { return {"Bar": 20}; }, | | 206|+ GetLimits: function() { return {"Bar": 20 }; }, | 207| 207| GetCounts: function() { return {"Bar": 0}; }, | 208| 208| GetLimitChangers: function() {return {"Bar": {}}; } | 209| 209| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | 206| 206| GetLimits: function() { return {"Bar": 20}; }, | 207| |- GetCounts: function() { return {"Bar": 0}; }, | | 207|+ "GetCounts": function() { return {"Bar": 0}; }, | 208| 208| GetLimitChangers: function() {return {"Bar": {}}; } | 209| 209| }); | 210| 210| | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | 206| 206| GetLimits: function() { return {"Bar": 20}; }, | 207| |- GetCounts: function() { return {"Bar": 0}; }, | | 207|+ GetCounts: function() { return { "Bar": 0}; }, | 208| 208| GetLimitChangers: function() {return {"Bar": {}}; } | 209| 209| }); | 210| 210| | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | 206| 206| GetLimits: function() { return {"Bar": 20}; }, | 207| |- GetCounts: function() { return {"Bar": 0}; }, | | 207|+ GetCounts: function() { return {"Bar": 0 }; }, | 208| 208| GetLimitChangers: function() {return {"Bar": {}}; } | 209| 209| }); | 210| 210| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLimitChangers' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 205| 205| AddMock(101, IID_EntityLimits, { | 206| 206| GetLimits: function() { return {"Bar": 20}; }, | 207| 207| GetCounts: function() { return {"Bar": 0}; }, | 208| |- GetLimitChangers: function() {return {"Bar": {}}; } | | 208|+ "GetLimitChangers": function() {return {"Bar": {}}; } | 209| 209| }); | 210| 210| | 211| 211| AddMock(101, IID_TechnologyManager, { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 205| 205| AddMock(101, IID_EntityLimits, { | 206| 206| GetLimits: function() { return {"Bar": 20}; }, | 207| 207| GetCounts: function() { return {"Bar": 0}; }, | 208| |- GetLimitChangers: function() {return {"Bar": {}}; } | | 208|+ GetLimitChangers: function() {return { "Bar": {}}; } | 209| 209| }); | 210| 210| | 211| 211| AddMock(101, IID_TechnologyManager, { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 205| 205| AddMock(101, IID_EntityLimits, { | 206| 206| GetLimits: function() { return {"Bar": 20}; }, | 207| 207| GetCounts: function() { return {"Bar": 0}; }, | 208| |- GetLimitChangers: function() {return {"Bar": {}}; } | | 208|+ GetLimitChangers: function() {return {"Bar": {} }; } | 209| 209| }); | 210| 210| | 211| 211| AddMock(101, IID_TechnologyManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetBasicStatistics' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 218| 218| }); | 219| 219| | 220| 220| AddMock(101, IID_StatisticsTracker, { | 221| |- GetBasicStatistics: function() { | | 221|+ "GetBasicStatistics": function() { | 222| 222| return { | 223| 223| "resourcesGathered": { | 224| 224| "food": 100, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSequences' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 230| 230| "percentMapExplored": 10 | 231| 231| }; | 232| 232| }, | 233| |- GetSequences: function() { | | 233|+ "GetSequences": function() { | 234| 234| return { | 235| 235| "unitsTrained": [0, 10], | 236| 236| "unitsLost": [0, 9], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseTrainedUnitsCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 255| 255| "teamPeakPercentOfMapControlled": [0, 10] | 256| 256| }; | 257| 257| }, | 258| |- IncreaseTrainedUnitsCounter: function() { return 1; }, | | 258|+ "IncreaseTrainedUnitsCounter": function() { return 1; }, | 259| 259| IncreaseConstructedBuildingsCounter: function() { return 1; }, | 260| 260| IncreaseBuiltCivCentresCounter: function() { return 1; } | 261| 261| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseConstructedBuildingsCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 256| 256| }; | 257| 257| }, | 258| 258| IncreaseTrainedUnitsCounter: function() { return 1; }, | 259| |- IncreaseConstructedBuildingsCounter: function() { return 1; }, | | 259|+ "IncreaseConstructedBuildingsCounter": function() { return 1; }, | 260| 260| IncreaseBuiltCivCentresCounter: function() { return 1; } | 261| 261| }); | 262| 262| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseBuiltCivCentresCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 257| 257| }, | 258| 258| IncreaseTrainedUnitsCounter: function() { return 1; }, | 259| 259| IncreaseConstructedBuildingsCounter: function() { return 1; }, | 260| |- IncreaseBuiltCivCentresCounter: function() { return 1; } | | 260|+ "IncreaseBuiltCivCentresCounter": function() { return 1; } | 261| 261| }); | 262| 262| | 263| 263| // Note: property order matters when using TS_ASSERT_UNEVAL_EQUALS, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'players' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 264| 264| // because uneval preserves property order. So make sure this object | 265| 265| // matches the ordering in GuiInterface. | 266| 266| TS_ASSERT_UNEVAL_EQUALS(cmp.GetSimulationState(), { | 267| |- players: [ | | 267|+ "players": [ | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'name' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 266| 266| TS_ASSERT_UNEVAL_EQUALS(cmp.GetSimulationState(), { | 267| 267| players: [ | 268| 268| { | 269| |- name: "Player 1", | | 269|+ "name": "Player 1", | 270| 270| civ: "gaia", | 271| 271| color: { r:1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'civ' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| players: [ | 268| 268| { | 269| 269| name: "Player 1", | 270| |- civ: "gaia", | | 270|+ "civ": "gaia", | 271| 271| color: { r:1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'color' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ "color": { r:1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'r' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { "r":1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'r'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r: 1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'g' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r:1, "g":1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'g'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r:1, g: 1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'b' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r:1, g:1, "b":1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'b'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r:1, g:1, b: 1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'a' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r:1, g:1, b:1, "a":1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'a'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r:1, g:1, b:1, a: 1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'controlsAll' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| 271| color: { r:1, g:1, b:1, a:1 }, | 272| |- controlsAll: false, | | 272|+ "controlsAll": false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | 275| 275| popMax: 200, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popCount' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 270| 270| civ: "gaia", | 271| 271| color: { r:1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| |- popCount: 10, | | 273|+ "popCount": 10, | 274| 274| popLimit: 20, | 275| 275| popMax: 200, | 276| 276| panelEntities: [], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popLimit' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 271| 271| color: { r:1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| |- popLimit: 20, | | 274|+ "popLimit": 20, | 275| 275| popMax: 200, | 276| 276| panelEntities: [], | 277| 277| resourceCounts: { food: 100 }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popMax' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | 275| |- popMax: 200, | | 275|+ "popMax": 200, | 276| 276| panelEntities: [], | 277| 277| resourceCounts: { food: 100 }, | 278| 278| trainingBlocked: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'panelEntities' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | 275| 275| popMax: 200, | 276| |- panelEntities: [], | | 276|+ "panelEntities": [], | 277| 277| resourceCounts: { food: 100 }, | 278| 278| trainingBlocked: false, | 279| 279| state: "active", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'resourceCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 274| 274| popLimit: 20, | 275| 275| popMax: 200, | 276| 276| panelEntities: [], | 277| |- resourceCounts: { food: 100 }, | | 277|+ "resourceCounts": { food: 100 }, | 278| 278| trainingBlocked: false, | 279| 279| state: "active", | 280| 280| team: -1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 274| 274| popLimit: 20, | 275| 275| popMax: 200, | 276| 276| panelEntities: [], | 277| |- resourceCounts: { food: 100 }, | | 277|+ resourceCounts: { "food": 100 }, | 278| 278| trainingBlocked: false, | 279| 279| state: "active", | 280| 280| team: -1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'trainingBlocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 275| 275| popMax: 200, | 276| 276| panelEntities: [], | 277| 277| resourceCounts: { food: 100 }, | 278| |- trainingBlocked: false, | | 278|+ "trainingBlocked": false, | 279| 279| state: "active", | 280| 280| team: -1, | 281| 281| teamsLocked: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'state' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 276| 276| panelEntities: [], | 277| 277| resourceCounts: { food: 100 }, | 278| 278| trainingBlocked: false, | 279| |- state: "active", | | 279|+ "state": "active", | 280| 280| team: -1, | 281| 281| teamsLocked: false, | 282| 282| cheatsEnabled: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'team' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 277| 277| resourceCounts: { food: 100 }, | 278| 278| trainingBlocked: false, | 279| 279| state: "active", | 280| |- team: -1, | | 280|+ "team": -1, | 281| 281| teamsLocked: false, | 282| 282| cheatsEnabled: false, | 283| 283| disabledTemplates: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'teamsLocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 278| 278| trainingBlocked: false, | 279| 279| state: "active", | 280| 280| team: -1, | 281| |- teamsLocked: false, | | 281|+ "teamsLocked": false, | 282| 282| cheatsEnabled: false, | 283| 283| disabledTemplates: {}, | 284| 284| disabledTechnologies: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'cheatsEnabled' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 279| 279| state: "active", | 280| 280| team: -1, | 281| 281| teamsLocked: false, | 282| |- cheatsEnabled: false, | | 282|+ "cheatsEnabled": false, | 283| 283| disabledTemplates: {}, | 284| 284| disabledTechnologies: {}, | 285| 285| hasSharedDropsites: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'disabledTemplates' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 280| 280| team: -1, | 281| 281| teamsLocked: false, | 282| 282| cheatsEnabled: false, | 283| |- disabledTemplates: {}, | | 283|+ "disabledTemplates": {}, | 284| 284| disabledTechnologies: {}, | 285| 285| hasSharedDropsites: false, | 286| 286| hasSharedLos: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'disabledTechnologies' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 281| 281| teamsLocked: false, | 282| 282| cheatsEnabled: false, | 283| 283| disabledTemplates: {}, | 284| |- disabledTechnologies: {}, | | 284|+ "disabledTechnologies": {}, | 285| 285| hasSharedDropsites: false, | 286| 286| hasSharedLos: false, | 287| 287| spyCostMultiplier: 1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'hasSharedDropsites' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 282| 282| cheatsEnabled: false, | 283| 283| disabledTemplates: {}, | 284| 284| disabledTechnologies: {}, | 285| |- hasSharedDropsites: false, | | 285|+ "hasSharedDropsites": false, | 286| 286| hasSharedLos: false, | 287| 287| spyCostMultiplier: 1, | 288| 288| phase: "village", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'hasSharedLos' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 283| 283| disabledTemplates: {}, | 284| 284| disabledTechnologies: {}, | 285| 285| hasSharedDropsites: false, | 286| |- hasSharedLos: false, | | 286|+ "hasSharedLos": false, | 287| 287| spyCostMultiplier: 1, | 288| 288| phase: "village", | 289| 289| isAlly: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'spyCostMultiplier' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 284| 284| disabledTechnologies: {}, | 285| 285| hasSharedDropsites: false, | 286| 286| hasSharedLos: false, | 287| |- spyCostMultiplier: 1, | | 287|+ "spyCostMultiplier": 1, | 288| 288| phase: "village", | 289| 289| isAlly: [false, false], | 290| 290| isMutualAlly: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'phase' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 285| 285| hasSharedDropsites: false, | 286| 286| hasSharedLos: false, | 287| 287| spyCostMultiplier: 1, | 288| |- phase: "village", | | 288|+ "phase": "village", | 289| 289| isAlly: [false, false], | 290| 290| isMutualAlly: [false, false], | 291| 291| isNeutral: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 286| 286| hasSharedLos: false, | 287| 287| spyCostMultiplier: 1, | 288| 288| phase: "village", | 289| |- isAlly: [false, false], | | 289|+ "isAlly": [false, false], | 290| 290| isMutualAlly: [false, false], | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isMutualAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 287| 287| spyCostMultiplier: 1, | 288| 288| phase: "village", | 289| 289| isAlly: [false, false], | 290| |- isMutualAlly: [false, false], | | 290|+ "isMutualAlly": [false, false], | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isNeutral' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 288| 288| phase: "village", | 289| 289| isAlly: [false, false], | 290| 290| isMutualAlly: [false, false], | 291| |- isNeutral: [false, false], | | 291|+ "isNeutral": [false, false], | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isEnemy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 289| 289| isAlly: [false, false], | 290| 290| isMutualAlly: [false, false], | 291| 291| isNeutral: [false, false], | 292| |- isEnemy: [true, true], | | 292|+ "isEnemy": [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityLimits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 290| 290| isMutualAlly: [false, false], | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| |- entityLimits: {"Foo": 10}, | | 293|+ "entityLimits": {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 290| 290| isMutualAlly: [false, false], | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| |- entityLimits: {"Foo": 10}, | | 293|+ entityLimits: { "Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 290| 290| isMutualAlly: [false, false], | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| |- entityLimits: {"Foo": 10}, | | 293|+ entityLimits: {"Foo": 10 }, | 294| 294| entityCounts: {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| |- entityCounts: {"Foo": 5}, | | 294|+ "entityCounts": {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| |- entityCounts: {"Foo": 5}, | | 294|+ entityCounts: { "Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| |- entityCounts: {"Foo": 5}, | | 294|+ entityCounts: {"Foo": 5 }, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityLimitChangers' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| |- entityLimitChangers: {"Foo": {}}, | | 295|+ "entityLimitChangers": {"Foo": {}}, | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | 298| 298| researchedTechs: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| |- entityLimitChangers: {"Foo": {}}, | | 295|+ entityLimitChangers: { "Foo": {}}, | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | 298| 298| researchedTechs: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| |- entityLimitChangers: {"Foo": {}}, | | 295|+ entityLimitChangers: {"Foo": {} }, | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | 298| 298| researchedTechs: new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchQueued' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 293| 293| entityLimits: {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| |- researchQueued: new Map(), | | 296|+ "researchQueued": new Map(), | 297| 297| researchStarted: new Set(), | 298| 298| researchedTechs: new Set(), | 299| 299| classCounts: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchStarted' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 294| 294| entityCounts: {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | 297| |- researchStarted: new Set(), | | 297|+ "researchStarted": new Set(), | 298| 298| researchedTechs: new Set(), | 299| 299| classCounts: {}, | 300| 300| typeCountsByClass: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchedTechs' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | 298| |- researchedTechs: new Set(), | | 298|+ "researchedTechs": new Set(), | 299| 299| classCounts: {}, | 300| 300| typeCountsByClass: {}, | 301| 301| canBarter: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'classCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | 298| 298| researchedTechs: new Set(), | 299| |- classCounts: {}, | | 299|+ "classCounts": {}, | 300| 300| typeCountsByClass: {}, | 301| 301| canBarter: false, | 302| 302| barterPrices: { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'typeCountsByClass' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 297| 297| researchStarted: new Set(), | 298| 298| researchedTechs: new Set(), | 299| 299| classCounts: {}, | 300| |- typeCountsByClass: {}, | | 300|+ "typeCountsByClass": {}, | 301| 301| canBarter: false, | 302| 302| barterPrices: { | 303| 303| "buy": { "food": 150 }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'canBarter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 298| 298| researchedTechs: new Set(), | 299| 299| classCounts: {}, | 300| 300| typeCountsByClass: {}, | 301| |- canBarter: false, | | 301|+ "canBarter": false, | 302| 302| barterPrices: { | 303| 303| "buy": { "food": 150 }, | 304| 304| "sell": { "food": 25 } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'barterPrices' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 299| 299| classCounts: {}, | 300| 300| typeCountsByClass: {}, | 301| 301| canBarter: false, | 302| |- barterPrices: { | | 302|+ "barterPrices": { | 303| 303| "buy": { "food": 150 }, | 304| 304| "sell": { "food": 25 } | 305| 305| }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'statistics' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 303| 303| "buy": { "food": 150 }, | 304| 304| "sell": { "food": 25 } | 305| 305| }, | 306| |- statistics: { | | 306|+ "statistics": { | 307| 307| resourcesGathered: { | 308| 308| food: 100, | 309| 309| wood: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'resourcesGathered' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 304| 304| "sell": { "food": 25 } | 305| 305| }, | 306| 306| statistics: { | 307| |- resourcesGathered: { | | 307|+ "resourcesGathered": { | 308| 308| food: 100, | 309| 309| wood: 0, | 310| 310| metal: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 305| 305| }, | 306| 306| statistics: { | 307| 307| resourcesGathered: { | 308| |- food: 100, | | 308|+ "food": 100, | 309| 309| wood: 0, | 310| 310| metal: 0, | 311| 311| stone: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'wood' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 306| 306| statistics: { | 307| 307| resourcesGathered: { | 308| 308| food: 100, | 309| |- wood: 0, | | 309|+ "wood": 0, | 310| 310| metal: 0, | 311| 311| stone: 0, | 312| 312| vegetarianFood: 0 | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'metal' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 307| 307| resourcesGathered: { | 308| 308| food: 100, | 309| 309| wood: 0, | 310| |- metal: 0, | | 310|+ "metal": 0, | 311| 311| stone: 0, | 312| 312| vegetarianFood: 0 | 313| 313| }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'stone' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 308| 308| food: 100, | 309| 309| wood: 0, | 310| 310| metal: 0, | 311| |- stone: 0, | | 311|+ "stone": 0, | 312| 312| vegetarianFood: 0 | 313| 313| }, | 314| 314| percentMapExplored: 10 | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'vegetarianFood' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 309| 309| wood: 0, | 310| 310| metal: 0, | 311| 311| stone: 0, | 312| |- vegetarianFood: 0 | | 312|+ "vegetarianFood": 0 | 313| 313| }, | 314| 314| percentMapExplored: 10 | 315| 315| } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'percentMapExplored' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 311| 311| stone: 0, | 312| 312| vegetarianFood: 0 | 313| 313| }, | 314| |- percentMapExplored: 10 | | 314|+ "percentMapExplored": 10 | 315| 315| } | 316| 316| }, | 317| 317| { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'name' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 315| 315| } | 316| 316| }, | 317| 317| { | 318| |- name: "Player 2", | | 318|+ "name": "Player 2", | 319| 319| civ: "mace", | 320| 320| color: { r:1, g:0, b:0, a:1 }, | 321| 321| controlsAll: true, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'civ' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 316| 316| }, | 317| 317| { | 318| 318| name: "Player 2", | 319| |- civ: "mace", | | 319|+ "civ": "mace", | 320| 320| color: { r:1, g:0, b:0, a:1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'color' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 317| 317| { | 318| 318| name: "Player 2", | 319| 319| civ: "mace", | 320| |- color: { r:1, g:0, b:0, a:1 }, | | 320|+ "color": { r:1, g:0, b:0, a:1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'r' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 317| 317| { | 318| 318| name: "Player 2", | 319| 319| civ: "mace", | 320| |- color: { r:1, g:0, b:0, a:1 }, | | 320|+ color: { "r":1, g:0, b:0, a:1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'r'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 317| 317| { | 318| 318| name: "Player 2", | 319| 319| civ: "mace", | 320| |- color: { r:1, g:0, b:0, a:1 }, | | 320|+ color: { r: 1, g:0, b:0, a:1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'g' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 317| 317| { | 318| 318| name: "Player 2", | 319| 319| civ: "mace", | 320| |- color: { r:1, g:0, b:0, a:1 }, | | 320|+ color: { r:1, "g":0, b:0, a:1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'g'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 317| 317| { | 318| 318| name: "Player 2", | 319| 319| civ: "mace", | 320| |- color: { r:1, g:0, b:0, a:1 }, | | 320|+ color: { r:1, g: 0, b:0, a:1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'b' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 317| 317| { | 318| 318| name: "Player 2", | 319| 319| civ: "mace", | 320| |- color: { r:1, g:0, b:0, a:1 }, | | 320|+ color: { r:1, g:0, "b":0, a:1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'b'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 317| 317| { | 318| 318| name: "Player 2", | 319| 319| civ: "mace", | 320| |- color: { r:1, g:0, b:0, a:1 }, | | 320|+ color: { r:1, g:0, b: 0, a:1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'a' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 317| 317| { | 318| 318| name: "Player 2", | 319| 319| civ: "mace", | 320| |- color: { r:1, g:0, b:0, a:1 }, | | 320|+ color: { r:1, g:0, b:0, "a":1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'a'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 317| 317| { | 318| 318| name: "Player 2", | 319| 319| civ: "mace", | 320| |- color: { r:1, g:0, b:0, a:1 }, | | 320|+ color: { r:1, g:0, b:0, a: 1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'controlsAll' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 318| 318| name: "Player 2", | 319| 319| civ: "mace", | 320| 320| color: { r:1, g:0, b:0, a:1 }, | 321| |- controlsAll: true, | | 321|+ "controlsAll": true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | 324| 324| popMax: 300, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popCount' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 319| 319| civ: "mace", | 320| 320| color: { r:1, g:0, b:0, a:1 }, | 321| 321| controlsAll: true, | 322| |- popCount: 40, | | 322|+ "popCount": 40, | 323| 323| popLimit: 30, | 324| 324| popMax: 300, | 325| 325| panelEntities: [], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popLimit' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 320| 320| color: { r:1, g:0, b:0, a:1 }, | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| |- popLimit: 30, | | 323|+ "popLimit": 30, | 324| 324| popMax: 300, | 325| 325| panelEntities: [], | 326| 326| resourceCounts: { food: 200 }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popMax' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 321| 321| controlsAll: true, | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | 324| |- popMax: 300, | | 324|+ "popMax": 300, | 325| 325| panelEntities: [], | 326| 326| resourceCounts: { food: 200 }, | 327| 327| trainingBlocked: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'panelEntities' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 322| 322| popCount: 40, | 323| 323| popLimit: 30, | 324| 324| popMax: 300, | 325| |- panelEntities: [], | | 325|+ "panelEntities": [], | 326| 326| resourceCounts: { food: 200 }, | 327| 327| trainingBlocked: false, | 328| 328| state: "active", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'resourceCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 323| 323| popLimit: 30, | 324| 324| popMax: 300, | 325| 325| panelEntities: [], | 326| |- resourceCounts: { food: 200 }, | | 326|+ "resourceCounts": { food: 200 }, | 327| 327| trainingBlocked: false, | 328| 328| state: "active", | 329| 329| team: -1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 323| 323| popLimit: 30, | 324| 324| popMax: 300, | 325| 325| panelEntities: [], | 326| |- resourceCounts: { food: 200 }, | | 326|+ resourceCounts: { "food": 200 }, | 327| 327| trainingBlocked: false, | 328| 328| state: "active", | 329| 329| team: -1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'trainingBlocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 324| 324| popMax: 300, | 325| 325| panelEntities: [], | 326| 326| resourceCounts: { food: 200 }, | 327| |- trainingBlocked: false, | | 327|+ "trainingBlocked": false, | 328| 328| state: "active", | 329| 329| team: -1, | 330| 330| teamsLocked: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'state' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 325| 325| panelEntities: [], | 326| 326| resourceCounts: { food: 200 }, | 327| 327| trainingBlocked: false, | 328| |- state: "active", | | 328|+ "state": "active", | 329| 329| team: -1, | 330| 330| teamsLocked: false, | 331| 331| cheatsEnabled: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'team' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 326| 326| resourceCounts: { food: 200 }, | 327| 327| trainingBlocked: false, | 328| 328| state: "active", | 329| |- team: -1, | | 329|+ "team": -1, | 330| 330| teamsLocked: false, | 331| 331| cheatsEnabled: false, | 332| 332| disabledTemplates: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'teamsLocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 327| 327| trainingBlocked: false, | 328| 328| state: "active", | 329| 329| team: -1, | 330| |- teamsLocked: false, | | 330|+ "teamsLocked": false, | 331| 331| cheatsEnabled: false, | 332| 332| disabledTemplates: {}, | 333| 333| disabledTechnologies: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'cheatsEnabled' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 328| 328| state: "active", | 329| 329| team: -1, | 330| 330| teamsLocked: false, | 331| |- cheatsEnabled: false, | | 331|+ "cheatsEnabled": false, | 332| 332| disabledTemplates: {}, | 333| 333| disabledTechnologies: {}, | 334| 334| hasSharedDropsites: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'disabledTemplates' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 329| 329| team: -1, | 330| 330| teamsLocked: false, | 331| 331| cheatsEnabled: false, | 332| |- disabledTemplates: {}, | | 332|+ "disabledTemplates": {}, | 333| 333| disabledTechnologies: {}, | 334| 334| hasSharedDropsites: false, | 335| 335| hasSharedLos: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'disabledTechnologies' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 330| 330| teamsLocked: false, | 331| 331| cheatsEnabled: false, | 332| 332| disabledTemplates: {}, | 333| |- disabledTechnologies: {}, | | 333|+ "disabledTechnologies": {}, | 334| 334| hasSharedDropsites: false, | 335| 335| hasSharedLos: false, | 336| 336| spyCostMultiplier: 1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'hasSharedDropsites' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 331| 331| cheatsEnabled: false, | 332| 332| disabledTemplates: {}, | 333| 333| disabledTechnologies: {}, | 334| |- hasSharedDropsites: false, | | 334|+ "hasSharedDropsites": false, | 335| 335| hasSharedLos: false, | 336| 336| spyCostMultiplier: 1, | 337| 337| phase: "village", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'hasSharedLos' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 332| 332| disabledTemplates: {}, | 333| 333| disabledTechnologies: {}, | 334| 334| hasSharedDropsites: false, | 335| |- hasSharedLos: false, | | 335|+ "hasSharedLos": false, | 336| 336| spyCostMultiplier: 1, | 337| 337| phase: "village", | 338| 338| isAlly: [true, true], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'spyCostMultiplier' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 333| 333| disabledTechnologies: {}, | 334| 334| hasSharedDropsites: false, | 335| 335| hasSharedLos: false, | 336| |- spyCostMultiplier: 1, | | 336|+ "spyCostMultiplier": 1, | 337| 337| phase: "village", | 338| 338| isAlly: [true, true], | 339| 339| isMutualAlly: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'phase' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 334| 334| hasSharedDropsites: false, | 335| 335| hasSharedLos: false, | 336| 336| spyCostMultiplier: 1, | 337| |- phase: "village", | | 337|+ "phase": "village", | 338| 338| isAlly: [true, true], | 339| 339| isMutualAlly: [false, false], | 340| 340| isNeutral: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 335| 335| hasSharedLos: false, | 336| 336| spyCostMultiplier: 1, | 337| 337| phase: "village", | 338| |- isAlly: [true, true], | | 338|+ "isAlly": [true, true], | 339| 339| isMutualAlly: [false, false], | 340| 340| isNeutral: [false, false], | 341| 341| isEnemy: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isMutualAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 336| 336| spyCostMultiplier: 1, | 337| 337| phase: "village", | 338| 338| isAlly: [true, true], | 339| |- isMutualAlly: [false, false], | | 339|+ "isMutualAlly": [false, false], | 340| 340| isNeutral: [false, false], | 341| 341| isEnemy: [false, false], | 342| 342| entityLimits: {"Bar": 20}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isNeutral' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 337| 337| phase: "village", | 338| 338| isAlly: [true, true], | 339| 339| isMutualAlly: [false, false], | 340| |- isNeutral: [false, false], | | 340|+ "isNeutral": [false, false], | 341| 341| isEnemy: [false, false], | 342| 342| entityLimits: {"Bar": 20}, | 343| 343| entityCounts: {"Bar": 0}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isEnemy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 338| 338| isAlly: [true, true], | 339| 339| isMutualAlly: [false, false], | 340| 340| isNeutral: [false, false], | 341| |- isEnemy: [false, false], | | 341|+ "isEnemy": [false, false], | 342| 342| entityLimits: {"Bar": 20}, | 343| 343| entityCounts: {"Bar": 0}, | 344| 344| entityLimitChangers: {"Bar": {}}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityLimits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 339| 339| isMutualAlly: [false, false], | 340| 340| isNeutral: [false, false], | 341| 341| isEnemy: [false, false], | 342| |- entityLimits: {"Bar": 20}, | | 342|+ "entityLimits": {"Bar": 20}, | 343| 343| entityCounts: {"Bar": 0}, | 344| 344| entityLimitChangers: {"Bar": {}}, | 345| 345| researchQueued: new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 339| 339| isMutualAlly: [false, false], | 340| 340| isNeutral: [false, false], | 341| 341| isEnemy: [false, false], | 342| |- entityLimits: {"Bar": 20}, | | 342|+ entityLimits: { "Bar": 20}, | 343| 343| entityCounts: {"Bar": 0}, | 344| 344| entityLimitChangers: {"Bar": {}}, | 345| 345| researchQueued: new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 339| 339| isMutualAlly: [false, false], | 340| 340| isNeutral: [false, false], | 341| 341| isEnemy: [false, false], | 342| |- entityLimits: {"Bar": 20}, | | 342|+ entityLimits: {"Bar": 20 }, | 343| 343| entityCounts: {"Bar": 0}, | 344| 344| entityLimitChangers: {"Bar": {}}, | 345| 345| researchQueued: new Map(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 340| 340| isNeutral: [false, false], | 341| 341| isEnemy: [false, false], | 342| 342| entityLimits: {"Bar": 20}, | 343| |- entityCounts: {"Bar": 0}, | | 343|+ "entityCounts": {"Bar": 0}, | 344| 344| entityLimitChangers: {"Bar": {}}, | 345| 345| researchQueued: new Map(), | 346| 346| researchStarted: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 340| 340| isNeutral: [false, false], | 341| 341| isEnemy: [false, false], | 342| 342| entityLimits: {"Bar": 20}, | 343| |- entityCounts: {"Bar": 0}, | | 343|+ entityCounts: { "Bar": 0}, | 344| 344| entityLimitChangers: {"Bar": {}}, | 345| 345| researchQueued: new Map(), | 346| 346| researchStarted: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 340| 340| isNeutral: [false, false], | 341| 341| isEnemy: [false, false], | 342| 342| entityLimits: {"Bar": 20}, | 343| |- entityCounts: {"Bar": 0}, | | 343|+ entityCounts: {"Bar": 0 }, | 344| 344| entityLimitChangers: {"Bar": {}}, | 345| 345| researchQueued: new Map(), | 346| 346| researchStarted: new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityLimitChangers' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 341| 341| isEnemy: [false, false], | 342| 342| entityLimits: {"Bar": 20}, | 343| 343| entityCounts: {"Bar": 0}, | 344| |- entityLimitChangers: {"Bar": {}}, | | 344|+ "entityLimitChangers": {"Bar": {}}, | 345| 345| researchQueued: new Map(), | 346| 346| researchStarted: new Set(), | 347| 347| researchedTechs: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 341| 341| isEnemy: [false, false], | 342| 342| entityLimits: {"Bar": 20}, | 343| 343| entityCounts: {"Bar": 0}, | 344| |- entityLimitChangers: {"Bar": {}}, | | 344|+ entityLimitChangers: { "Bar": {}}, | 345| 345| researchQueued: new Map(), | 346| 346| researchStarted: new Set(), | 347| 347| researchedTechs: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 341| 341| isEnemy: [false, false], | 342| 342| entityLimits: {"Bar": 20}, | 343| 343| entityCounts: {"Bar": 0}, | 344| |- entityLimitChangers: {"Bar": {}}, | | 344|+ entityLimitChangers: {"Bar": {} }, | 345| 345| researchQueued: new Map(), | 346| 346| researchStarted: new Set(), | 347| 347| researchedTechs: new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchQueued' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 342| 342| entityLimits: {"Bar": 20}, | 343| 343| entityCounts: {"Bar": 0}, | 344| 344| entityLimitChangers: {"Bar": {}}, | 345| |- researchQueued: new Map(), | | 345|+ "researchQueued": new Map(), | 346| 346| researchStarted: new Set(), | 347| 347| researchedTechs: new Set(), | 348| 348| classCounts: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchStarted' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 343| 343| entityCounts: {"Bar": 0}, | 344| 344| entityLimitChangers: {"Bar": {}}, | 345| 345| researchQueued: new Map(), | 346| |- researchStarted: new Set(), | | 346|+ "researchStarted": new Set(), | 347| 347| researchedTechs: new Set(), | 348| 348| classCounts: {}, | 349| 349| typeCountsByClass: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchedTechs' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 344| 344| entityLimitChangers: {"Bar": {}}, | 345| 345| researchQueued: new Map(), | 346| 346| researchStarted: new Set(), | 347| |- researchedTechs: new Set(), | | 347|+ "researchedTechs": new Set(), | 348| 348| classCounts: {}, | 349| 349| typeCountsByClass: {}, | 350| 350| canBarter: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'classCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 345| 345| researchQueued: new Map(), | 346| 346| researchStarted: new Set(), | 347| 347| researchedTechs: new Set(), | 348| |- classCounts: {}, | | 348|+ "classCounts": {}, | 349| 349| typeCountsByClass: {}, | 350| 350| canBarter: false, | 351| 351| barterPrices: { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'typeCountsByClass' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 346| 346| researchStarted: new Set(), | 347| 347| researchedTechs: new Set(), | 348| 348| classCounts: {}, | 349| |- typeCountsByClass: {}, | | 349|+ "typeCountsByClass": {}, | 350| 350| canBarter: false, | 351| 351| barterPrices: { | 352| 352| "buy": { "food": 150 }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'canBarter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 347| 347| researchedTechs: new Set(), | 348| 348| classCounts: {}, | 349| 349| typeCountsByClass: {}, | 350| |- canBarter: false, | | 350|+ "canBarter": false, | 351| 351| barterPrices: { | 352| 352| "buy": { "food": 150 }, | 353| 353| "sell": { "food": 25 } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'barterPrices' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 348| 348| classCounts: {}, | 349| 349| typeCountsByClass: {}, | 350| 350| canBarter: false, | 351| |- barterPrices: { | | 351|+ "barterPrices": { | 352| 352| "buy": { "food": 150 }, | 353| 353| "sell": { "food": 25 } | 354| 354| }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'statistics' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 352| 352| "buy": { "food": 150 }, | 353| 353| "sell": { "food": 25 } | 354| 354| }, | 355| |- statistics: { | | 355|+ "statistics": { | 356| 356| resourcesGathered: { | 357| 357| food: 100, | 358| 358| wood: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'resourcesGathered' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 353| 353| "sell": { "food": 25 } | 354| 354| }, | 355| 355| statistics: { | 356| |- resourcesGathered: { | | 356|+ "resourcesGathered": { | 357| 357| food: 100, | 358| 358| wood: 0, | 359| 359| metal: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 354| 354| }, | 355| 355| statistics: { | 356| 356| resourcesGathered: { | 357| |- food: 100, | | 357|+ "food": 100, | 358| 358| wood: 0, | 359| 359| metal: 0, | 360| 360| stone: 0, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'wood' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 355| 355| statistics: { | 356| 356| resourcesGathered: { | 357| 357| food: 100, | 358| |- wood: 0, | | 358|+ "wood": 0, | 359| 359| metal: 0, | 360| 360| stone: 0, | 361| 361| vegetarianFood: 0 | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'metal' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 356| 356| resourcesGathered: { | 357| 357| food: 100, | 358| 358| wood: 0, | 359| |- metal: 0, | | 359|+ "metal": 0, | 360| 360| stone: 0, | 361| 361| vegetarianFood: 0 | 362| 362| }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'stone' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 357| 357| food: 100, | 358| 358| wood: 0, | 359| 359| metal: 0, | 360| |- stone: 0, | | 360|+ "stone": 0, | 361| 361| vegetarianFood: 0 | 362| 362| }, | 363| 363| percentMapExplored: 10 | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'vegetarianFood' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 358| 358| wood: 0, | 359| 359| metal: 0, | 360| 360| stone: 0, | 361| |- vegetarianFood: 0 | | 361|+ "vegetarianFood": 0 | 362| 362| }, | 363| 363| percentMapExplored: 10 | 364| 364| } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'percentMapExplored' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 360| 360| stone: 0, | 361| 361| vegetarianFood: 0 | 362| 362| }, | 363| |- percentMapExplored: 10 | | 363|+ "percentMapExplored": 10 | 364| 364| } | 365| 365| } | 366| 366| ], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'circularMap' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 364| 364| } | 365| 365| } | 366| 366| ], | 367| |- circularMap: false, | | 367|+ "circularMap": false, | 368| 368| timeElapsed: 0, | 369| 369| "victoryConditions": ["conquest", "wonder"], | 370| 370| alliedVictory: false | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'timeElapsed' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 365| 365| } | 366| 366| ], | 367| 367| circularMap: false, | 368| |- timeElapsed: 0, | | 368|+ "timeElapsed": 0, | 369| 369| "victoryConditions": ["conquest", "wonder"], | 370| 370| alliedVictory: false | 371| 371| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'alliedVictory' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 367| 367| circularMap: false, | 368| 368| timeElapsed: 0, | 369| 369| "victoryConditions": ["conquest", "wonder"], | 370| |- alliedVictory: false | | 370|+ "alliedVictory": false | 371| 371| }); | 372| 372| | 373| 373| TS_ASSERT_UNEVAL_EQUALS(cmp.GetExtendedSimulationState(), { | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'r'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 375| 375| { | 376| 376| "name": "Player 1", | 377| 377| "civ": "gaia", | 378| |- "color": { "r":1, "g":1, "b":1, "a":1 }, | | 378|+ "color": { "r": 1, "g":1, "b":1, "a":1 }, | 379| 379| "controlsAll": false, | 380| 380| "popCount": 10, | 381| 381| "popLimit": 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'g'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 375| 375| { | 376| 376| "name": "Player 1", | 377| 377| "civ": "gaia", | 378| |- "color": { "r":1, "g":1, "b":1, "a":1 }, | | 378|+ "color": { "r":1, "g": 1, "b":1, "a":1 }, | 379| 379| "controlsAll": false, | 380| 380| "popCount": 10, | 381| 381| "popLimit": 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'b'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 375| 375| { | 376| 376| "name": "Player 1", | 377| 377| "civ": "gaia", | 378| |- "color": { "r":1, "g":1, "b":1, "a":1 }, | | 378|+ "color": { "r":1, "g":1, "b": 1, "a":1 }, | 379| 379| "controlsAll": false, | 380| 380| "popCount": 10, | 381| 381| "popLimit": 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'a'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 375| 375| { | 376| 376| "name": "Player 1", | 377| 377| "civ": "gaia", | 378| |- "color": { "r":1, "g":1, "b":1, "a":1 }, | | 378|+ "color": { "r":1, "g":1, "b":1, "a": 1 }, | 379| 379| "controlsAll": false, | 380| 380| "popCount": 10, | 381| 381| "popLimit": 20, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 397| 397| "isMutualAlly": [false, false], | 398| 398| "isNeutral": [false, false], | 399| 399| "isEnemy": [true, true], | 400| |- "entityLimits": {"Foo": 10}, | | 400|+ "entityLimits": { "Foo": 10}, | 401| 401| "entityCounts": {"Foo": 5}, | 402| 402| "entityLimitChangers": {"Foo": {}}, | 403| 403| "researchQueued": new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 397| 397| "isMutualAlly": [false, false], | 398| 398| "isNeutral": [false, false], | 399| 399| "isEnemy": [true, true], | 400| |- "entityLimits": {"Foo": 10}, | | 400|+ "entityLimits": {"Foo": 10 }, | 401| 401| "entityCounts": {"Foo": 5}, | 402| 402| "entityLimitChangers": {"Foo": {}}, | 403| 403| "researchQueued": new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 398| 398| "isNeutral": [false, false], | 399| 399| "isEnemy": [true, true], | 400| 400| "entityLimits": {"Foo": 10}, | 401| |- "entityCounts": {"Foo": 5}, | | 401|+ "entityCounts": { "Foo": 5}, | 402| 402| "entityLimitChangers": {"Foo": {}}, | 403| 403| "researchQueued": new Map(), | 404| 404| "researchStarted": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 398| 398| "isNeutral": [false, false], | 399| 399| "isEnemy": [true, true], | 400| 400| "entityLimits": {"Foo": 10}, | 401| |- "entityCounts": {"Foo": 5}, | | 401|+ "entityCounts": {"Foo": 5 }, | 402| 402| "entityLimitChangers": {"Foo": {}}, | 403| 403| "researchQueued": new Map(), | 404| 404| "researchStarted": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 399| 399| "isEnemy": [true, true], | 400| 400| "entityLimits": {"Foo": 10}, | 401| 401| "entityCounts": {"Foo": 5}, | 402| |- "entityLimitChangers": {"Foo": {}}, | | 402|+ "entityLimitChangers": { "Foo": {}}, | 403| 403| "researchQueued": new Map(), | 404| 404| "researchStarted": new Set(), | 405| 405| "researchedTechs": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 399| 399| "isEnemy": [true, true], | 400| 400| "entityLimits": {"Foo": 10}, | 401| 401| "entityCounts": {"Foo": 5}, | 402| |- "entityLimitChangers": {"Foo": {}}, | | 402|+ "entityLimitChangers": {"Foo": {} }, | 403| 403| "researchQueued": new Map(), | 404| 404| "researchStarted": new Set(), | 405| 405| "researchedTechs": new Set(), | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'r'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 447| 447| { | 448| 448| "name": "Player 2", | 449| 449| "civ": "mace", | 450| |- "color": { "r":1, "g":0, "b":0, "a":1 }, | | 450|+ "color": { "r": 1, "g":0, "b":0, "a":1 }, | 451| 451| "controlsAll": true, | 452| 452| "popCount": 40, | 453| 453| "popLimit": 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'g'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 447| 447| { | 448| 448| "name": "Player 2", | 449| 449| "civ": "mace", | 450| |- "color": { "r":1, "g":0, "b":0, "a":1 }, | | 450|+ "color": { "r":1, "g": 0, "b":0, "a":1 }, | 451| 451| "controlsAll": true, | 452| 452| "popCount": 40, | 453| 453| "popLimit": 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'b'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 447| 447| { | 448| 448| "name": "Player 2", | 449| 449| "civ": "mace", | 450| |- "color": { "r":1, "g":0, "b":0, "a":1 }, | | 450|+ "color": { "r":1, "g":0, "b": 0, "a":1 }, | 451| 451| "controlsAll": true, | 452| 452| "popCount": 40, | 453| 453| "popLimit": 30, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'a'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 447| 447| { | 448| 448| "name": "Player 2", | 449| 449| "civ": "mace", | 450| |- "color": { "r":1, "g":0, "b":0, "a":1 }, | | 450|+ "color": { "r":1, "g":0, "b":0, "a": 1 }, | 451| 451| "controlsAll": true, | 452| 452| "popCount": 40, | 453| 453| "popLimit": 30, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 469| 469| "isMutualAlly": [false, false], | 470| 470| "isNeutral": [false, false], | 471| 471| "isEnemy": [false, false], | 472| |- "entityLimits": {"Bar": 20}, | | 472|+ "entityLimits": { "Bar": 20}, | 473| 473| "entityCounts": {"Bar": 0}, | 474| 474| "entityLimitChangers": {"Bar": {}}, | 475| 475| "researchQueued": new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 469| 469| "isMutualAlly": [false, false], | 470| 470| "isNeutral": [false, false], | 471| 471| "isEnemy": [false, false], | 472| |- "entityLimits": {"Bar": 20}, | | 472|+ "entityLimits": {"Bar": 20 }, | 473| 473| "entityCounts": {"Bar": 0}, | 474| 474| "entityLimitChangers": {"Bar": {}}, | 475| 475| "researchQueued": new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 470| 470| "isNeutral": [false, false], | 471| 471| "isEnemy": [false, false], | 472| 472| "entityLimits": {"Bar": 20}, | 473| |- "entityCounts": {"Bar": 0}, | | 473|+ "entityCounts": { "Bar": 0}, | 474| 474| "entityLimitChangers": {"Bar": {}}, | 475| 475| "researchQueued": new Map(), | 476| 476| "researchStarted": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 470| 470| "isNeutral": [false, false], | 471| 471| "isEnemy": [false, false], | 472| 472| "entityLimits": {"Bar": 20}, | 473| |- "entityCounts": {"Bar": 0}, | | 473|+ "entityCounts": {"Bar": 0 }, | 474| 474| "entityLimitChangers": {"Bar": {}}, | 475| 475| "researchQueued": new Map(), | 476| 476| "researchStarted": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 471| 471| "isEnemy": [false, false], | 472| 472| "entityLimits": {"Bar": 20}, | 473| 473| "entityCounts": {"Bar": 0}, | 474| |- "entityLimitChangers": {"Bar": {}}, | | 474|+ "entityLimitChangers": { "Bar": {}}, | 475| 475| "researchQueued": new Map(), | 476| 476| "researchStarted": new Set(), | 477| 477| "researchedTechs": new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 471| 471| "isEnemy": [false, false], | 472| 472| "entityLimits": {"Bar": 20}, | 473| 473| "entityCounts": {"Bar": 0}, | 474| |- "entityLimitChangers": {"Bar": {}}, | | 474|+ "entityLimitChangers": {"Bar": {} }, | 475| 475| "researchQueued": new Map(), | 476| 476| "researchStarted": new Set(), | 477| 477| "researchedTechs": new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetEntitiesList' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 525| 525| | 526| 526| | 527| 527| AddMock(10, IID_Builder, { | 528| |- GetEntitiesList: function() { | | 528|+ "GetEntitiesList": function() { | 529| 529| return ["test1", "test2"]; | 530| 530| }, | 531| 531| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetHitpoints' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 531| 531| }); | 532| 532| | 533| 533| AddMock(10, IID_Health, { | 534| |- GetHitpoints: function() { return 50; }, | | 534|+ "GetHitpoints": function() { return 50; }, | 535| 535| GetMaxHitpoints: function() { return 60; }, | 536| 536| IsRepairable: function() { return false; }, | 537| 537| IsUnhealable: function() { return false; } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetMaxHitpoints' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 532| 532| | 533| 533| AddMock(10, IID_Health, { | 534| 534| GetHitpoints: function() { return 50; }, | 535| |- GetMaxHitpoints: function() { return 60; }, | | 535|+ "GetMaxHitpoints": function() { return 60; }, | 536| 536| IsRepairable: function() { return false; }, | 537| 537| IsUnhealable: function() { return false; } | 538| 538| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsRepairable' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 533| 533| AddMock(10, IID_Health, { | 534| 534| GetHitpoints: function() { return 50; }, | 535| 535| GetMaxHitpoints: function() { return 60; }, | 536| |- IsRepairable: function() { return false; }, | | 536|+ "IsRepairable": function() { return false; }, | 537| 537| IsUnhealable: function() { return false; } | 538| 538| }); | 539| 539| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsUnhealable' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 534| 534| GetHitpoints: function() { return 50; }, | 535| 535| GetMaxHitpoints: function() { return 60; }, | 536| 536| IsRepairable: function() { return false; }, | 537| |- IsUnhealable: function() { return false; } | | 537|+ "IsUnhealable": function() { return false; } | 538| 538| }); | 539| 539| | 540| 540| AddMock(10, IID_Identity, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetClassesList' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 538| 538| }); | 539| 539| | 540| 540| AddMock(10, IID_Identity, { | 541| |- GetClassesList: function() { return ["class1", "class2"]; }, | | 541|+ "GetClassesList": function() { return ["class1", "class2"]; }, | 542| 542| GetVisibleClassesList: function() { return ["class3", "class4"]; }, | 543| 543| GetRank: function() { return "foo"; }, | 544| 544| GetSelectionGroupName: function() { return "Selection Group Name"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetVisibleClassesList' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 539| 539| | 540| 540| AddMock(10, IID_Identity, { | 541| 541| GetClassesList: function() { return ["class1", "class2"]; }, | 542| |- GetVisibleClassesList: function() { return ["class3", "class4"]; }, | | 542|+ "GetVisibleClassesList": function() { return ["class3", "class4"]; }, | 543| 543| GetRank: function() { return "foo"; }, | 544| 544| GetSelectionGroupName: function() { return "Selection Group Name"; }, | 545| 545| HasClass: function() { return true; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetRank' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 540| 540| AddMock(10, IID_Identity, { | 541| 541| GetClassesList: function() { return ["class1", "class2"]; }, | 542| 542| GetVisibleClassesList: function() { return ["class3", "class4"]; }, | 543| |- GetRank: function() { return "foo"; }, | | 543|+ "GetRank": function() { return "foo"; }, | 544| 544| GetSelectionGroupName: function() { return "Selection Group Name"; }, | 545| 545| HasClass: function() { return true; }, | 546| 546| IsUndeletable: function() { return false; } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSelectionGroupName' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 541| 541| GetClassesList: function() { return ["class1", "class2"]; }, | 542| 542| GetVisibleClassesList: function() { return ["class3", "class4"]; }, | 543| 543| GetRank: function() { return "foo"; }, | 544| |- GetSelectionGroupName: function() { return "Selection Group Name"; }, | | 544|+ "GetSelectionGroupName": function() { return "Selection Group Name"; }, | 545| 545| HasClass: function() { return true; }, | 546| 546| IsUndeletable: function() { return false; } | 547| 547| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasClass' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 542| 542| GetVisibleClassesList: function() { return ["class3", "class4"]; }, | 543| 543| GetRank: function() { return "foo"; }, | 544| 544| GetSelectionGroupName: function() { return "Selection Group Name"; }, | 545| |- HasClass: function() { return true; }, | | 545|+ "HasClass": function() { return true; }, | 546| 546| IsUndeletable: function() { return false; } | 547| 547| }); | 548| 548| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsUndeletable' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 543| 543| GetRank: function() { return "foo"; }, | 544| 544| GetSelectionGroupName: function() { return "Selection Group Name"; }, | 545| 545| HasClass: function() { return true; }, | 546| |- IsUndeletable: function() { return false; } | | 546|+ "IsUndeletable": function() { return false; } | 547| 547| }); | 548| 548| | 549| 549| AddMock(10, IID_Position, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTurretParent' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 547| 547| }); | 548| 548| | 549| 549| AddMock(10, IID_Position, { | 550| |- GetTurretParent: function() {return INVALID_ENTITY;}, | | 550|+ "GetTurretParent": function() {return INVALID_ENTITY;}, | 551| 551| GetPosition: function() { | 552| 552| return {x:1, y:2, z:3}; | 553| 553| }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPosition' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 548| 548| | 549| 549| AddMock(10, IID_Position, { | 550| 550| GetTurretParent: function() {return INVALID_ENTITY;}, | 551| |- GetPosition: function() { | | 551|+ "GetPosition": function() { | 552| 552| return {x:1, y:2, z:3}; | 553| 553| }, | 554| 554| IsInWorld: function() { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 549| 549| AddMock(10, IID_Position, { | 550| 550| GetTurretParent: function() {return INVALID_ENTITY;}, | 551| 551| GetPosition: function() { | 552| |- return {x:1, y:2, z:3}; | | 552|+ return { x:1, y:2, z:3}; | 553| 553| }, | 554| 554| IsInWorld: function() { | 555| 555| return true; | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'x' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 549| 549| AddMock(10, IID_Position, { | 550| 550| GetTurretParent: function() {return INVALID_ENTITY;}, | 551| 551| GetPosition: function() { | 552| |- return {x:1, y:2, z:3}; | | 552|+ return {"x":1, y:2, z:3}; | 553| 553| }, | 554| 554| IsInWorld: function() { | 555| 555| return true; | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'x'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 549| 549| AddMock(10, IID_Position, { | 550| 550| GetTurretParent: function() {return INVALID_ENTITY;}, | 551| 551| GetPosition: function() { | 552| |- return {x:1, y:2, z:3}; | | 552|+ return {x: 1, y:2, z:3}; | 553| 553| }, | 554| 554| IsInWorld: function() { | 555| 555| return true; | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'y' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 549| 549| AddMock(10, IID_Position, { | 550| 550| GetTurretParent: function() {return INVALID_ENTITY;}, | 551| 551| GetPosition: function() { | 552| |- return {x:1, y:2, z:3}; | | 552|+ return {x:1, "y":2, z:3}; | 553| 553| }, | 554| 554| IsInWorld: function() { | 555| 555| return true; | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'y'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 549| 549| AddMock(10, IID_Position, { | 550| 550| GetTurretParent: function() {return INVALID_ENTITY;}, | 551| 551| GetPosition: function() { | 552| |- return {x:1, y:2, z:3}; | | 552|+ return {x:1, y: 2, z:3}; | 553| 553| }, | 554| 554| IsInWorld: function() { | 555| 555| return true; | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'z' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 549| 549| AddMock(10, IID_Position, { | 550| 550| GetTurretParent: function() {return INVALID_ENTITY;}, | 551| 551| GetPosition: function() { | 552| |- return {x:1, y:2, z:3}; | | 552|+ return {x:1, y:2, "z":3}; | 553| 553| }, | 554| 554| IsInWorld: function() { | 555| 555| return true; | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'z'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 549| 549| AddMock(10, IID_Position, { | 550| 550| GetTurretParent: function() {return INVALID_ENTITY;}, | 551| 551| GetPosition: function() { | 552| |- return {x:1, y:2, z:3}; | | 552|+ return {x:1, y:2, z: 3}; | 553| 553| }, | 554| 554| IsInWorld: function() { | 555| 555| return true; | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 549| 549| AddMock(10, IID_Position, { | 550| 550| GetTurretParent: function() {return INVALID_ENTITY;}, | 551| 551| GetPosition: function() { | 552| |- return {x:1, y:2, z:3}; | | 552|+ return {x:1, y:2, z:3 }; | 553| 553| }, | 554| 554| IsInWorld: function() { | 555| 555| return true; | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsInWorld' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 551| 551| GetPosition: function() { | 552| 552| return {x:1, y:2, z:3}; | 553| 553| }, | 554| |- IsInWorld: function() { | | 554|+ "IsInWorld": function() { | 555| 555| return true; | 556| 556| } | 557| 557| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 575| 575| "selectionGroupName": "Selection Group Name", | 576| 576| "canDelete": true | 577| 577| }, | 578| |- "position": {x:1, y:2, z:3}, | | 578|+ "position": { x:1, y:2, z:3}, | 579| 579| "hitpoints": 50, | 580| 580| "maxHitpoints": 60, | 581| 581| "needsRepair": false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'x' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 575| 575| "selectionGroupName": "Selection Group Name", | 576| 576| "canDelete": true | 577| 577| }, | 578| |- "position": {x:1, y:2, z:3}, | | 578|+ "position": {"x":1, y:2, z:3}, | 579| 579| "hitpoints": 50, | 580| 580| "maxHitpoints": 60, | 581| 581| "needsRepair": false, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'x'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 575| 575| "selectionGroupName": "Selection Group Name", | 576| 576| "canDelete": true | 577| 577| }, | 578| |- "position": {x:1, y:2, z:3}, | | 578|+ "position": {x: 1, y:2, z:3}, | 579| 579| "hitpoints": 50, | 580| 580| "maxHitpoints": 60, | 581| 581| "needsRepair": false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'y' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 575| 575| "selectionGroupName": "Selection Group Name", | 576| 576| "canDelete": true | 577| 577| }, | 578| |- "position": {x:1, y:2, z:3}, | | 578|+ "position": {x:1, "y":2, z:3}, | 579| 579| "hitpoints": 50, | 580| 580| "maxHitpoints": 60, | 581| 581| "needsRepair": false, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'y'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 575| 575| "selectionGroupName": "Selection Group Name", | 576| 576| "canDelete": true | 577| 577| }, | 578| |- "position": {x:1, y:2, z:3}, | | 578|+ "position": {x:1, y: 2, z:3}, | 579| 579| "hitpoints": 50, | 580| 580| "maxHitpoints": 60, | 581| 581| "needsRepair": false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'z' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 575| 575| "selectionGroupName": "Selection Group Name", | 576| 576| "canDelete": true | 577| 577| }, | 578| |- "position": {x:1, y:2, z:3}, | | 578|+ "position": {x:1, y:2, "z":3}, | 579| 579| "hitpoints": 50, | 580| 580| "maxHitpoints": 60, | 581| 581| "needsRepair": false, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'z'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 575| 575| "selectionGroupName": "Selection Group Name", | 576| 576| "canDelete": true | 577| 577| }, | 578| |- "position": {x:1, y:2, z:3}, | | 578|+ "position": {x:1, y:2, z: 3}, | 579| 579| "hitpoints": 50, | 580| 580| "maxHitpoints": 60, | 581| 581| "needsRepair": false, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 575| 575| "selectionGroupName": "Selection Group Name", | 576| 576| "canDelete": true | 577| 577| }, | 578| |- "position": {x:1, y:2, z:3}, | | 578|+ "position": {x:1, y:2, z:3 }, | 579| 579| "hitpoints": 50, | 580| 580| "maxHitpoints": 60, | 581| 581| "needsRepair": false, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'isBarterMarket'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 582| 582| "needsHeal": true, | 583| 583| "builder": true, | 584| 584| "visibility": "visible", | 585| |- "isBarterMarket":true, | | 585|+ "isBarterMarket": true, | 586| 586| "resourceTrickle": { | 587| 587| "interval": 1250, | 588| 588| "rates": { "food": 2, "wood": 3, "stone": 5, "metal": 9 } binaries/data/mods/public/simulation/components/AlertRaiser.js | 123| » » let·units·=·cmpGarrisonHolder.GetEntities().filter(ent·=>·{ | | [NORMAL] ESLintBear (no-shadow): | | 'units' is already declared in the upper scope. | | [NORMAL] ESLintBear (semi): | | Missing semicolon. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | 367| 367| if (cmpGarrisonable) | 368| 368| ret.garrisonable = { | 369| 369| "size": cmpGarrisonable.GetSize() | 370| |- } | | 370|+ }; | 371| 371| | 372| 372| let cmpUnitAI = Engine.QueryInterface(ent, IID_UnitAI); | 373| 373| if (cmpUnitAI) | | [NORMAL] ESLintBear (indent): | | Expected indentation of 2 tabs but found 3. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | 825| 825| updateEntityColor(data.showAllStatusBars && (i == player || player == -1) ? | 826| 826| [IID_Minimap, IID_RangeOverlayRenderer, IID_RallyPointRenderer, IID_StatusBars] : | 827| 827| [IID_Minimap, IID_RangeOverlayRenderer, IID_RallyPointRenderer], | 828| |- cmpRangeManager.GetEntitiesByPlayer(i)); | | 828|+ cmpRangeManager.GetEntitiesByPlayer(i)); | 829| 829| } | 830| 830| updateEntityColor([IID_Selectable, IID_StatusBars], data.selected); | 831| 831| Engine.QueryInterface(SYSTEM_ENTITY, IID_TerritoryManager).UpdateColors(); | | [NORMAL] ESLintBear (indent): | | Expected indentation of 5 tabs but found 6. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js |1658|1658| { |1659|1659| minDist2 = dist2; |1660|1660| minDistEntitySnapData = { |1661| |- "x": pos.x, | |1661|+ "x": pos.x, |1662|1662| "z": pos.z, |1663|1663| "angle": cmpPosition.GetRotation().y, |1664|1664| "ent": ent | | [NORMAL] ESLintBear (indent): | | Expected indentation of 5 tabs but found 6. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js |1659|1659| minDist2 = dist2; |1660|1660| minDistEntitySnapData = { |1661|1661| "x": pos.x, |1662| |- "z": pos.z, | |1662|+ "z": pos.z, |1663|1663| "angle": cmpPosition.GetRotation().y, |1664|1664| "ent": ent |1665|1665| }; | | [NORMAL] ESLintBear (indent): | | Expected indentation of 5 tabs but found 6. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js |1660|1660| minDistEntitySnapData = { |1661|1661| "x": pos.x, |1662|1662| "z": pos.z, |1663| |- "angle": cmpPosition.GetRotation().y, | |1663|+ "angle": cmpPosition.GetRotation().y, |1664|1664| "ent": ent |1665|1665| }; |1666|1666| } | | [NORMAL] ESLintBear (indent): | | Expected indentation of 5 tabs but found 6. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/GuiInterface.js |1661|1661| "x": pos.x, |1662|1662| "z": pos.z, |1663|1663| "angle": cmpPosition.GetRotation().y, |1664| |- "ent": ent | |1664|+ "ent": ent |1665|1665| }; |1666|1666| } |1667|1667| } binaries/data/mods/public/simulation/components/GuiInterface.js | 370| » » } | | [NORMAL] JSHintBear: | | Missing semicolon. binaries/data/mods/public/simulation/components/Garrisonable.js | 22| » » null; | | [NORMAL] ESLintBear (no-unused-expressions): | | Expected an assignment or function call and instead saw an expression. binaries/data/mods/public/simulation/components/Garrisonable.js | 22| » » null; | | [NORMAL] JSHintBear: | | Expected an assignment or function call and instead saw an expression. Executing section cli... Link to build: https://jenkins.wildfiregames.com/job/docker-differential/1042/display/redirect Comment Actions Successful build - Chance fights ever on the side of the prudent. Link to build: https://jenkins.wildfiregames.com/job/vs2015-differential/799/display/redirect Comment Actions Successful build - Chance fights ever on the side of the prudent. Link to build: https://jenkins.wildfiregames.com/job/vs2015-differential/800/display/redirect Comment Actions Successful build - Chance fights ever on the side of the prudent. Linter detected issues: Executing section Source... Executing section JS... | | [NORMAL] ESLintBear (operator-linebreak): | | '||' should be placed at the end of the line. |----| | /zpool0/trunk/binaries/data/mods/public/globalscripts/Templates.js | |++++| /zpool0/trunk/binaries/data/mods/public/globalscripts/Templates.js | 87| 87| // If the elements are still strings, split them by space or by '+' | 88| 88| if (typeof sublist == "string") | 89| 89| sublist = sublist.split(/[+\s]+/); | 90| |- if (sublist.every(c => (c[0] == "!" && classes.indexOf(c.substr(1)) == -1) | 91| |- || (c[0] != "!" && classes.indexOf(c) != -1))) | | 90|+ if (sublist.every(c => (c[0] == "!" && classes.indexOf(c.substr(1)) == -1) || | | 91|+ (c[0] != "!" && classes.indexOf(c) != -1))) | 92| 92| return true; | 93| 93| } | 94| 94| binaries/data/mods/public/globalscripts/Templates.js | 91| » » ····················||·(c[0]·!=·"!"·&&·classes.indexOf(c)·!=·-1))) | | [NORMAL] JSHintBear: | | Misleading line break before '||'; readers may interpret this as an expression boundary. | | [NORMAL] ESLintBear (indent): | | Expected indentation of 3 tabs but found 4. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | 75| 75| | 76| 76| if (i == 35) | 77| 77| AddMock(i, IID_Garrisonable, { | 78| |- "GetSize": () => 9 | | 78|+ "GetSize": () => 9 | 79| 79| }); | 80| 80| else | 81| 81| AddMock(i, IID_Garrisonable, { | | [NORMAL] ESLintBear (indent): | | Expected indentation of 2 tabs but found 3. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | 76| 76| if (i == 35) | 77| 77| AddMock(i, IID_Garrisonable, { | 78| 78| "GetSize": () => 9 | 79| |- }); | | 79|+ }); | 80| 80| else | 81| 81| AddMock(i, IID_Garrisonable, { | 82| 82| "GetSize": () => 1 | | [NORMAL] ESLintBear (indent): | | Expected indentation of 3 tabs but found 4. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | 79| 79| }); | 80| 80| else | 81| 81| AddMock(i, IID_Garrisonable, { | 82| |- "GetSize": () => 1 | | 82|+ "GetSize": () => 1 | 83| 83| }); | 84| 84| | 85| 85| AddMock(i, IID_Position, { | | [NORMAL] ESLintBear (indent): | | Expected indentation of 2 tabs but found 3. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GarrisonHolder.js | 80| 80| else | 81| 81| AddMock(i, IID_Garrisonable, { | 82| 82| "GetSize": () => 1 | 83| |- }); | | 83|+ }); | 84| 84| | 85| 85| AddMock(i, IID_Position, { | 86| 86| "GetHeightOffset": () => 0, binaries/data/mods/public/simulation/ai/common-api/entity.js | 817| » » if·(this.position()·!==·undefined)·{ | | [NORMAL] ESLintBear (brace-rules/brace-on-same-line): | | Opening curly brace appears on the same line as controlling statement. binaries/data/mods/public/simulation/ai/common-api/entity.js | 834| » » if·(this.position()·!==·undefined·&&·unitToFleeFrom.position()·!==·undefined)·{ | | [NORMAL] ESLintBear (brace-rules/brace-on-same-line): | | Opening curly brace appears on the same line as controlling statement. binaries/data/mods/public/simulation/ai/common-api/entity.js | 964| }(API3); | | [MAJOR] ESLintBear (no-use-before-define): | | 'API3' was used before it was defined. binaries/data/mods/public/simulation/components/AlertRaiser.js | 123| » » let·units·=·cmpGarrisonHolder.GetEntities().filter(ent·=>·{ | | [NORMAL] ESLintBear (no-shadow): | | 'units' is already declared in the upper scope. | | [NORMAL] ESLintBear (indent): | | Expected indentation of 4 tabs but found 3. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 48| 48| "GetResource": resource => ({ | 49| 49| "aiAnalysisInfluenceGroup": | 50| 50| resource == "food" ? "ignore" : | 51| |- resource == "wood" ? "abundant" : "sparse" | | 51|+ resource == "wood" ? "abundant" : "sparse" | 52| 52| }) | 53| 53| }; | 54| 54| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPrices' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 56| 56| | 57| 57| | 58| 58| AddMock(SYSTEM_ENTITY, IID_Barter, { | 59| |- GetPrices: function() { | | 59|+ "GetPrices": function() { | 60| 60| return { | 61| 61| "buy": { "food": 150 }, | 62| 62| "sell": { "food": 25 } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'PlayerHasMarket' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 62| 62| "sell": { "food": 25 } | 63| 63| }; | 64| 64| }, | 65| |- PlayerHasMarket: function () { return false; } | | 65|+ "PlayerHasMarket": function () { return false; } | 66| 66| }); | 67| 67| | 68| 68| AddMock(SYSTEM_ENTITY, IID_EndGameManager, { | | [NORMAL] ESLintBear (space-before-function-paren): | | Unexpected space before function parentheses. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 62| 62| "sell": { "food": 25 } | 63| 63| }; | 64| 64| }, | 65| |- PlayerHasMarket: function () { return false; } | | 65|+ PlayerHasMarket: function() { return false; } | 66| 66| }); | 67| 67| | 68| 68| AddMock(SYSTEM_ENTITY, IID_EndGameManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetVictoryConditions' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 66| 66| }); | 67| 67| | 68| 68| AddMock(SYSTEM_ENTITY, IID_EndGameManager, { | 69| |- GetVictoryConditions: () => ["conquest", "wonder"], | | 69|+ "GetVictoryConditions": () => ["conquest", "wonder"], | 70| 70| GetAlliedVictory: function() { return false; } | 71| 71| }); | 72| 72| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetAlliedVictory' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 67| 67| | 68| 68| AddMock(SYSTEM_ENTITY, IID_EndGameManager, { | 69| 69| GetVictoryConditions: () => ["conquest", "wonder"], | 70| |- GetAlliedVictory: function() { return false; } | | 70|+ "GetAlliedVictory": function() { return false; } | 71| 71| }); | 72| 72| | 73| 73| AddMock(SYSTEM_ENTITY, IID_PlayerManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetNumPlayers' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 71| 71| }); | 72| 72| | 73| 73| AddMock(SYSTEM_ENTITY, IID_PlayerManager, { | 74| |- GetNumPlayers: function() { return 2; }, | | 74|+ "GetNumPlayers": function() { return 2; }, | 75| 75| GetPlayerByID: function(id) { TS_ASSERT(id === 0 || id === 1); return 100+id; } | 76| 76| }); | 77| 77| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPlayerByID' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 72| 72| | 73| 73| AddMock(SYSTEM_ENTITY, IID_PlayerManager, { | 74| 74| GetNumPlayers: function() { return 2; }, | 75| |- GetPlayerByID: function(id) { TS_ASSERT(id === 0 || id === 1); return 100+id; } | | 75|+ "GetPlayerByID": function(id) { TS_ASSERT(id === 0 || id === 1); return 100+id; } | 76| 76| }); | 77| 77| | 78| 78| AddMock(SYSTEM_ENTITY, IID_RangeManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLosVisibility' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 76| 76| }); | 77| 77| | 78| 78| AddMock(SYSTEM_ENTITY, IID_RangeManager, { | 79| |- GetLosVisibility: function(ent, player) { return "visible"; }, | | 79|+ "GetLosVisibility": function(ent, player) { return "visible"; }, | 80| 80| GetLosCircular: function() { return false; } | 81| 81| }); | 82| 82| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLosCircular' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 77| 77| | 78| 78| AddMock(SYSTEM_ENTITY, IID_RangeManager, { | 79| 79| GetLosVisibility: function(ent, player) { return "visible"; }, | 80| |- GetLosCircular: function() { return false; } | | 80|+ "GetLosCircular": function() { return false; } | 81| 81| }); | 82| 82| | 83| 83| AddMock(SYSTEM_ENTITY, IID_TemplateManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCurrentTemplateName' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 81| 81| }); | 82| 82| | 83| 83| AddMock(SYSTEM_ENTITY, IID_TemplateManager, { | 84| |- GetCurrentTemplateName: function(ent) { return "example"; }, | | 84|+ "GetCurrentTemplateName": function(ent) { return "example"; }, | 85| 85| GetTemplate: function(name) { return ""; } | 86| 86| }); | 87| 87| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTemplate' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 82| 82| | 83| 83| AddMock(SYSTEM_ENTITY, IID_TemplateManager, { | 84| 84| GetCurrentTemplateName: function(ent) { return "example"; }, | 85| |- GetTemplate: function(name) { return ""; } | | 85|+ "GetTemplate": function(name) { return ""; } | 86| 86| }); | 87| 87| | 88| 88| AddMock(SYSTEM_ENTITY, IID_Timer, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTime' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 86| 86| }); | 87| 87| | 88| 88| AddMock(SYSTEM_ENTITY, IID_Timer, { | 89| |- GetTime: function() { return 0; }, | | 89|+ "GetTime": function() { return 0; }, | 90| 90| SetTimeout: function(ent, iid, funcname, time, data) { return 0; } | 91| 91| }); | 92| 92| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'SetTimeout' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 87| 87| | 88| 88| AddMock(SYSTEM_ENTITY, IID_Timer, { | 89| 89| GetTime: function() { return 0; }, | 90| |- SetTimeout: function(ent, iid, funcname, time, data) { return 0; } | | 90|+ "SetTimeout": function(ent, iid, funcname, time, data) { return 0; } | 91| 91| }); | 92| 92| | 93| 93| AddMock(100, IID_Player, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetName' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 91| 91| }); | 92| 92| | 93| 93| AddMock(100, IID_Player, { | 94| |- GetName: function() { return "Player 1"; }, | | 94|+ "GetName": function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| 96| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCiv' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 92| 92| | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| |- GetCiv: function() { return "gaia"; }, | | 95|+ "GetCiv": function() { return "gaia"; }, | 96| 96| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetColor' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 96|+ "GetColor": function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'r' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 96|+ GetColor: function() { return { "r": 1, g: 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'g' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 96|+ GetColor: function() { return { r: 1, "g": 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'b' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 96|+ GetColor: function() { return { r: 1, g: 1, "b": 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'a' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 96|+ GetColor: function() { return { r: 1, g: 1, b: 1, "a": 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 93| 93| AddMock(100, IID_Player, { | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| |- GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | | 96|+ GetColor: function() { return { r: 1, g: 1, b: 1, a: 1 }; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'CanControlAllUnits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 94| 94| GetName: function() { return "Player 1"; }, | 95| 95| GetCiv: function() { return "gaia"; }, | 96| 96| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 97| |- CanControlAllUnits: function() { return false; }, | | 97|+ "CanControlAllUnits": function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | 100| 100| GetMaxPopulation: function() { return 200; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPopulationCount' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 95| 95| GetCiv: function() { return "gaia"; }, | 96| 96| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| |- GetPopulationCount: function() { return 10; }, | | 98|+ "GetPopulationCount": function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | 100| 100| GetMaxPopulation: function() { return 200; }, | 101| 101| GetResourceCounts: function() { return { food: 100 }; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPopulationLimit' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 96| 96| GetColor: function() { return { r: 1, g: 1, b: 1, a: 1}; }, | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| |- GetPopulationLimit: function() { return 20; }, | | 99|+ "GetPopulationLimit": function() { return 20; }, | 100| 100| GetMaxPopulation: function() { return 200; }, | 101| 101| GetResourceCounts: function() { return { food: 100 }; }, | 102| 102| GetPanelEntities: function() { return []; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetMaxPopulation' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 97| 97| CanControlAllUnits: function() { return false; }, | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | 100| |- GetMaxPopulation: function() { return 200; }, | | 100|+ "GetMaxPopulation": function() { return 200; }, | 101| 101| GetResourceCounts: function() { return { food: 100 }; }, | 102| 102| GetPanelEntities: function() { return []; }, | 103| 103| IsTrainingBlocked: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetResourceCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | 100| 100| GetMaxPopulation: function() { return 200; }, | 101| |- GetResourceCounts: function() { return { food: 100 }; }, | | 101|+ "GetResourceCounts": function() { return { food: 100 }; }, | 102| 102| GetPanelEntities: function() { return []; }, | 103| 103| IsTrainingBlocked: function() { return false; }, | 104| 104| GetState: function() { return "active"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 98| 98| GetPopulationCount: function() { return 10; }, | 99| 99| GetPopulationLimit: function() { return 20; }, | 100| 100| GetMaxPopulation: function() { return 200; }, | 101| |- GetResourceCounts: function() { return { food: 100 }; }, | | 101|+ GetResourceCounts: function() { return { "food": 100 }; }, | 102| 102| GetPanelEntities: function() { return []; }, | 103| 103| IsTrainingBlocked: function() { return false; }, | 104| 104| GetState: function() { return "active"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPanelEntities' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 99| 99| GetPopulationLimit: function() { return 20; }, | 100| 100| GetMaxPopulation: function() { return 200; }, | 101| 101| GetResourceCounts: function() { return { food: 100 }; }, | 102| |- GetPanelEntities: function() { return []; }, | | 102|+ "GetPanelEntities": function() { return []; }, | 103| 103| IsTrainingBlocked: function() { return false; }, | 104| 104| GetState: function() { return "active"; }, | 105| 105| GetTeam: function() { return -1; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsTrainingBlocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 100| 100| GetMaxPopulation: function() { return 200; }, | 101| 101| GetResourceCounts: function() { return { food: 100 }; }, | 102| 102| GetPanelEntities: function() { return []; }, | 103| |- IsTrainingBlocked: function() { return false; }, | | 103|+ "IsTrainingBlocked": function() { return false; }, | 104| 104| GetState: function() { return "active"; }, | 105| 105| GetTeam: function() { return -1; }, | 106| 106| GetLockTeams: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetState' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 101| 101| GetResourceCounts: function() { return { food: 100 }; }, | 102| 102| GetPanelEntities: function() { return []; }, | 103| 103| IsTrainingBlocked: function() { return false; }, | 104| |- GetState: function() { return "active"; }, | | 104|+ "GetState": function() { return "active"; }, | 105| 105| GetTeam: function() { return -1; }, | 106| 106| GetLockTeams: function() { return false; }, | 107| 107| GetCheatsEnabled: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTeam' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 102| 102| GetPanelEntities: function() { return []; }, | 103| 103| IsTrainingBlocked: function() { return false; }, | 104| 104| GetState: function() { return "active"; }, | 105| |- GetTeam: function() { return -1; }, | | 105|+ "GetTeam": function() { return -1; }, | 106| 106| GetLockTeams: function() { return false; }, | 107| 107| GetCheatsEnabled: function() { return false; }, | 108| 108| GetDiplomacy: function() { return [-1, 1]; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLockTeams' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 103| 103| IsTrainingBlocked: function() { return false; }, | 104| 104| GetState: function() { return "active"; }, | 105| 105| GetTeam: function() { return -1; }, | 106| |- GetLockTeams: function() { return false; }, | | 106|+ "GetLockTeams": function() { return false; }, | 107| 107| GetCheatsEnabled: function() { return false; }, | 108| 108| GetDiplomacy: function() { return [-1, 1]; }, | 109| 109| IsAlly: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCheatsEnabled' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 104| 104| GetState: function() { return "active"; }, | 105| 105| GetTeam: function() { return -1; }, | 106| 106| GetLockTeams: function() { return false; }, | 107| |- GetCheatsEnabled: function() { return false; }, | | 107|+ "GetCheatsEnabled": function() { return false; }, | 108| 108| GetDiplomacy: function() { return [-1, 1]; }, | 109| 109| IsAlly: function() { return false; }, | 110| 110| IsMutualAlly: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDiplomacy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 105| 105| GetTeam: function() { return -1; }, | 106| 106| GetLockTeams: function() { return false; }, | 107| 107| GetCheatsEnabled: function() { return false; }, | 108| |- GetDiplomacy: function() { return [-1, 1]; }, | | 108|+ "GetDiplomacy": function() { return [-1, 1]; }, | 109| 109| IsAlly: function() { return false; }, | 110| 110| IsMutualAlly: function() { return false; }, | 111| 111| IsNeutral: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 106| 106| GetLockTeams: function() { return false; }, | 107| 107| GetCheatsEnabled: function() { return false; }, | 108| 108| GetDiplomacy: function() { return [-1, 1]; }, | 109| |- IsAlly: function() { return false; }, | | 109|+ "IsAlly": function() { return false; }, | 110| 110| IsMutualAlly: function() { return false; }, | 111| 111| IsNeutral: function() { return false; }, | 112| 112| IsEnemy: function() { return true; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsMutualAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 107| 107| GetCheatsEnabled: function() { return false; }, | 108| 108| GetDiplomacy: function() { return [-1, 1]; }, | 109| 109| IsAlly: function() { return false; }, | 110| |- IsMutualAlly: function() { return false; }, | | 110|+ "IsMutualAlly": function() { return false; }, | 111| 111| IsNeutral: function() { return false; }, | 112| 112| IsEnemy: function() { return true; }, | 113| 113| GetDisabledTemplates: function() { return {}; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsNeutral' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 108| 108| GetDiplomacy: function() { return [-1, 1]; }, | 109| 109| IsAlly: function() { return false; }, | 110| 110| IsMutualAlly: function() { return false; }, | 111| |- IsNeutral: function() { return false; }, | | 111|+ "IsNeutral": function() { return false; }, | 112| 112| IsEnemy: function() { return true; }, | 113| 113| GetDisabledTemplates: function() { return {}; }, | 114| 114| GetDisabledTechnologies: function() { return {}; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsEnemy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 109| 109| IsAlly: function() { return false; }, | 110| 110| IsMutualAlly: function() { return false; }, | 111| 111| IsNeutral: function() { return false; }, | 112| |- IsEnemy: function() { return true; }, | | 112|+ "IsEnemy": function() { return true; }, | 113| 113| GetDisabledTemplates: function() { return {}; }, | 114| 114| GetDisabledTechnologies: function() { return {}; }, | 115| 115| GetSpyCostMultiplier: function() { return 1; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDisabledTemplates' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 110| 110| IsMutualAlly: function() { return false; }, | 111| 111| IsNeutral: function() { return false; }, | 112| 112| IsEnemy: function() { return true; }, | 113| |- GetDisabledTemplates: function() { return {}; }, | | 113|+ "GetDisabledTemplates": function() { return {}; }, | 114| 114| GetDisabledTechnologies: function() { return {}; }, | 115| 115| GetSpyCostMultiplier: function() { return 1; }, | 116| 116| HasSharedDropsites: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDisabledTechnologies' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 111| 111| IsNeutral: function() { return false; }, | 112| 112| IsEnemy: function() { return true; }, | 113| 113| GetDisabledTemplates: function() { return {}; }, | 114| |- GetDisabledTechnologies: function() { return {}; }, | | 114|+ "GetDisabledTechnologies": function() { return {}; }, | 115| 115| GetSpyCostMultiplier: function() { return 1; }, | 116| 116| HasSharedDropsites: function() { return false; }, | 117| 117| HasSharedLos: function() { return false; } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSpyCostMultiplier' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 112| 112| IsEnemy: function() { return true; }, | 113| 113| GetDisabledTemplates: function() { return {}; }, | 114| 114| GetDisabledTechnologies: function() { return {}; }, | 115| |- GetSpyCostMultiplier: function() { return 1; }, | | 115|+ "GetSpyCostMultiplier": function() { return 1; }, | 116| 116| HasSharedDropsites: function() { return false; }, | 117| 117| HasSharedLos: function() { return false; } | 118| 118| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasSharedDropsites' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 113| 113| GetDisabledTemplates: function() { return {}; }, | 114| 114| GetDisabledTechnologies: function() { return {}; }, | 115| 115| GetSpyCostMultiplier: function() { return 1; }, | 116| |- HasSharedDropsites: function() { return false; }, | | 116|+ "HasSharedDropsites": function() { return false; }, | 117| 117| HasSharedLos: function() { return false; } | 118| 118| }); | 119| 119| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasSharedLos' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 114| 114| GetDisabledTechnologies: function() { return {}; }, | 115| 115| GetSpyCostMultiplier: function() { return 1; }, | 116| 116| HasSharedDropsites: function() { return false; }, | 117| |- HasSharedLos: function() { return false; } | | 117|+ "HasSharedLos": function() { return false; } | 118| 118| }); | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLimits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 118| 118| }); | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | 121| |- GetLimits: function() { return {"Foo": 10}; }, | | 121|+ "GetLimits": function() { return {"Foo": 10}; }, | 122| 122| GetCounts: function() { return {"Foo": 5}; }, | 123| 123| GetLimitChangers: function() {return {"Foo": {}}; } | 124| 124| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 118| 118| }); | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | 121| |- GetLimits: function() { return {"Foo": 10}; }, | | 121|+ GetLimits: function() { return { "Foo": 10}; }, | 122| 122| GetCounts: function() { return {"Foo": 5}; }, | 123| 123| GetLimitChangers: function() {return {"Foo": {}}; } | 124| 124| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 118| 118| }); | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | 121| |- GetLimits: function() { return {"Foo": 10}; }, | | 121|+ GetLimits: function() { return {"Foo": 10 }; }, | 122| 122| GetCounts: function() { return {"Foo": 5}; }, | 123| 123| GetLimitChangers: function() {return {"Foo": {}}; } | 124| 124| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | 121| 121| GetLimits: function() { return {"Foo": 10}; }, | 122| |- GetCounts: function() { return {"Foo": 5}; }, | | 122|+ "GetCounts": function() { return {"Foo": 5}; }, | 123| 123| GetLimitChangers: function() {return {"Foo": {}}; } | 124| 124| }); | 125| 125| | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | 121| 121| GetLimits: function() { return {"Foo": 10}; }, | 122| |- GetCounts: function() { return {"Foo": 5}; }, | | 122|+ GetCounts: function() { return { "Foo": 5}; }, | 123| 123| GetLimitChangers: function() {return {"Foo": {}}; } | 124| 124| }); | 125| 125| | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 119| 119| | 120| 120| AddMock(100, IID_EntityLimits, { | 121| 121| GetLimits: function() { return {"Foo": 10}; }, | 122| |- GetCounts: function() { return {"Foo": 5}; }, | | 122|+ GetCounts: function() { return {"Foo": 5 }; }, | 123| 123| GetLimitChangers: function() {return {"Foo": {}}; } | 124| 124| }); | 125| 125| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLimitChangers' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 120| 120| AddMock(100, IID_EntityLimits, { | 121| 121| GetLimits: function() { return {"Foo": 10}; }, | 122| 122| GetCounts: function() { return {"Foo": 5}; }, | 123| |- GetLimitChangers: function() {return {"Foo": {}}; } | | 123|+ "GetLimitChangers": function() {return {"Foo": {}}; } | 124| 124| }); | 125| 125| | 126| 126| AddMock(100, IID_TechnologyManager, { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 120| 120| AddMock(100, IID_EntityLimits, { | 121| 121| GetLimits: function() { return {"Foo": 10}; }, | 122| 122| GetCounts: function() { return {"Foo": 5}; }, | 123| |- GetLimitChangers: function() {return {"Foo": {}}; } | | 123|+ GetLimitChangers: function() {return { "Foo": {}}; } | 124| 124| }); | 125| 125| | 126| 126| AddMock(100, IID_TechnologyManager, { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 120| 120| AddMock(100, IID_EntityLimits, { | 121| 121| GetLimits: function() { return {"Foo": 10}; }, | 122| 122| GetCounts: function() { return {"Foo": 5}; }, | 123| |- GetLimitChangers: function() {return {"Foo": {}}; } | | 123|+ GetLimitChangers: function() {return {"Foo": {} }; } | 124| 124| }); | 125| 125| | 126| 126| AddMock(100, IID_TechnologyManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetBasicStatistics' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 133| 133| }); | 134| 134| | 135| 135| AddMock(100, IID_StatisticsTracker, { | 136| |- GetBasicStatistics: function() { | | 136|+ "GetBasicStatistics": function() { | 137| 137| return { | 138| 138| "resourcesGathered": { | 139| 139| "food": 100, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSequences' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 145| 145| "percentMapExplored": 10 | 146| 146| }; | 147| 147| }, | 148| |- GetSequences: function() { | | 148|+ "GetSequences": function() { | 149| 149| return { | 150| 150| "unitsTrained": [0, 10], | 151| 151| "unitsLost": [0, 42], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseTrainedUnitsCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 170| 170| "teamPeakPercentOfMapControlled": [0, 10] | 171| 171| }; | 172| 172| }, | 173| |- IncreaseTrainedUnitsCounter: function() { return 1; }, | | 173|+ "IncreaseTrainedUnitsCounter": function() { return 1; }, | 174| 174| IncreaseConstructedBuildingsCounter: function() { return 1; }, | 175| 175| IncreaseBuiltCivCentresCounter: function() { return 1; } | 176| 176| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseConstructedBuildingsCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 171| 171| }; | 172| 172| }, | 173| 173| IncreaseTrainedUnitsCounter: function() { return 1; }, | 174| |- IncreaseConstructedBuildingsCounter: function() { return 1; }, | | 174|+ "IncreaseConstructedBuildingsCounter": function() { return 1; }, | 175| 175| IncreaseBuiltCivCentresCounter: function() { return 1; } | 176| 176| }); | 177| 177| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseBuiltCivCentresCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 172| 172| }, | 173| 173| IncreaseTrainedUnitsCounter: function() { return 1; }, | 174| 174| IncreaseConstructedBuildingsCounter: function() { return 1; }, | 175| |- IncreaseBuiltCivCentresCounter: function() { return 1; } | | 175|+ "IncreaseBuiltCivCentresCounter": function() { return 1; } | 176| 176| }); | 177| 177| | 178| 178| AddMock(101, IID_Player, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetName' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 176| 176| }); | 177| 177| | 178| 178| AddMock(101, IID_Player, { | 179| |- GetName: function() { return "Player 2"; }, | | 179|+ "GetName": function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| 181| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCiv' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 177| 177| | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| |- GetCiv: function() { return "mace"; }, | | 180|+ "GetCiv": function() { return "mace"; }, | 181| 181| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetColor' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 181|+ "GetColor": function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'r' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 181|+ GetColor: function() { return { "r": 1, g: 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'g' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 181|+ GetColor: function() { return { r: 1, "g": 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'b' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 181|+ GetColor: function() { return { r: 1, g: 0, "b": 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'a' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 181|+ GetColor: function() { return { r: 1, g: 0, b: 0, "a": 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 178| 178| AddMock(101, IID_Player, { | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| |- GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | | 181|+ GetColor: function() { return { r: 1, g: 0, b: 0, a: 1 }; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'CanControlAllUnits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 179| 179| GetName: function() { return "Player 2"; }, | 180| 180| GetCiv: function() { return "mace"; }, | 181| 181| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 182| |- CanControlAllUnits: function() { return true; }, | | 182|+ "CanControlAllUnits": function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | 185| 185| GetMaxPopulation: function() { return 300; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPopulationCount' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 180| 180| GetCiv: function() { return "mace"; }, | 181| 181| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| |- GetPopulationCount: function() { return 40; }, | | 183|+ "GetPopulationCount": function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | 185| 185| GetMaxPopulation: function() { return 300; }, | 186| 186| GetResourceCounts: function() { return { food: 200 }; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPopulationLimit' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 181| 181| GetColor: function() { return { r: 1, g: 0, b: 0, a: 1}; }, | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| |- GetPopulationLimit: function() { return 30; }, | | 184|+ "GetPopulationLimit": function() { return 30; }, | 185| 185| GetMaxPopulation: function() { return 300; }, | 186| 186| GetResourceCounts: function() { return { food: 200 }; }, | 187| 187| GetPanelEntities: function() { return []; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetMaxPopulation' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 182| 182| CanControlAllUnits: function() { return true; }, | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | 185| |- GetMaxPopulation: function() { return 300; }, | | 185|+ "GetMaxPopulation": function() { return 300; }, | 186| 186| GetResourceCounts: function() { return { food: 200 }; }, | 187| 187| GetPanelEntities: function() { return []; }, | 188| 188| IsTrainingBlocked: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetResourceCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | 185| 185| GetMaxPopulation: function() { return 300; }, | 186| |- GetResourceCounts: function() { return { food: 200 }; }, | | 186|+ "GetResourceCounts": function() { return { food: 200 }; }, | 187| 187| GetPanelEntities: function() { return []; }, | 188| 188| IsTrainingBlocked: function() { return false; }, | 189| 189| GetState: function() { return "active"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 183| 183| GetPopulationCount: function() { return 40; }, | 184| 184| GetPopulationLimit: function() { return 30; }, | 185| 185| GetMaxPopulation: function() { return 300; }, | 186| |- GetResourceCounts: function() { return { food: 200 }; }, | | 186|+ GetResourceCounts: function() { return { "food": 200 }; }, | 187| 187| GetPanelEntities: function() { return []; }, | 188| 188| IsTrainingBlocked: function() { return false; }, | 189| 189| GetState: function() { return "active"; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetPanelEntities' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 184| 184| GetPopulationLimit: function() { return 30; }, | 185| 185| GetMaxPopulation: function() { return 300; }, | 186| 186| GetResourceCounts: function() { return { food: 200 }; }, | 187| |- GetPanelEntities: function() { return []; }, | | 187|+ "GetPanelEntities": function() { return []; }, | 188| 188| IsTrainingBlocked: function() { return false; }, | 189| 189| GetState: function() { return "active"; }, | 190| 190| GetTeam: function() { return -1; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsTrainingBlocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 185| 185| GetMaxPopulation: function() { return 300; }, | 186| 186| GetResourceCounts: function() { return { food: 200 }; }, | 187| 187| GetPanelEntities: function() { return []; }, | 188| |- IsTrainingBlocked: function() { return false; }, | | 188|+ "IsTrainingBlocked": function() { return false; }, | 189| 189| GetState: function() { return "active"; }, | 190| 190| GetTeam: function() { return -1; }, | 191| 191| GetLockTeams: function() {return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetState' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 186| 186| GetResourceCounts: function() { return { food: 200 }; }, | 187| 187| GetPanelEntities: function() { return []; }, | 188| 188| IsTrainingBlocked: function() { return false; }, | 189| |- GetState: function() { return "active"; }, | | 189|+ "GetState": function() { return "active"; }, | 190| 190| GetTeam: function() { return -1; }, | 191| 191| GetLockTeams: function() {return false; }, | 192| 192| GetCheatsEnabled: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetTeam' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 187| 187| GetPanelEntities: function() { return []; }, | 188| 188| IsTrainingBlocked: function() { return false; }, | 189| 189| GetState: function() { return "active"; }, | 190| |- GetTeam: function() { return -1; }, | | 190|+ "GetTeam": function() { return -1; }, | 191| 191| GetLockTeams: function() {return false; }, | 192| 192| GetCheatsEnabled: function() { return false; }, | 193| 193| GetDiplomacy: function() { return [-1, 1]; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLockTeams' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 188| 188| IsTrainingBlocked: function() { return false; }, | 189| 189| GetState: function() { return "active"; }, | 190| 190| GetTeam: function() { return -1; }, | 191| |- GetLockTeams: function() {return false; }, | | 191|+ "GetLockTeams": function() {return false; }, | 192| 192| GetCheatsEnabled: function() { return false; }, | 193| 193| GetDiplomacy: function() { return [-1, 1]; }, | 194| 194| IsAlly: function() { return true; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCheatsEnabled' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 189| 189| GetState: function() { return "active"; }, | 190| 190| GetTeam: function() { return -1; }, | 191| 191| GetLockTeams: function() {return false; }, | 192| |- GetCheatsEnabled: function() { return false; }, | | 192|+ "GetCheatsEnabled": function() { return false; }, | 193| 193| GetDiplomacy: function() { return [-1, 1]; }, | 194| 194| IsAlly: function() { return true; }, | 195| 195| IsMutualAlly: function() {return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDiplomacy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 190| 190| GetTeam: function() { return -1; }, | 191| 191| GetLockTeams: function() {return false; }, | 192| 192| GetCheatsEnabled: function() { return false; }, | 193| |- GetDiplomacy: function() { return [-1, 1]; }, | | 193|+ "GetDiplomacy": function() { return [-1, 1]; }, | 194| 194| IsAlly: function() { return true; }, | 195| 195| IsMutualAlly: function() {return false; }, | 196| 196| IsNeutral: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 191| 191| GetLockTeams: function() {return false; }, | 192| 192| GetCheatsEnabled: function() { return false; }, | 193| 193| GetDiplomacy: function() { return [-1, 1]; }, | 194| |- IsAlly: function() { return true; }, | | 194|+ "IsAlly": function() { return true; }, | 195| 195| IsMutualAlly: function() {return false; }, | 196| 196| IsNeutral: function() { return false; }, | 197| 197| IsEnemy: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsMutualAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 192| 192| GetCheatsEnabled: function() { return false; }, | 193| 193| GetDiplomacy: function() { return [-1, 1]; }, | 194| 194| IsAlly: function() { return true; }, | 195| |- IsMutualAlly: function() {return false; }, | | 195|+ "IsMutualAlly": function() {return false; }, | 196| 196| IsNeutral: function() { return false; }, | 197| 197| IsEnemy: function() { return false; }, | 198| 198| GetDisabledTemplates: function() { return {}; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsNeutral' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 193| 193| GetDiplomacy: function() { return [-1, 1]; }, | 194| 194| IsAlly: function() { return true; }, | 195| 195| IsMutualAlly: function() {return false; }, | 196| |- IsNeutral: function() { return false; }, | | 196|+ "IsNeutral": function() { return false; }, | 197| 197| IsEnemy: function() { return false; }, | 198| 198| GetDisabledTemplates: function() { return {}; }, | 199| 199| GetDisabledTechnologies: function() { return {}; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IsEnemy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 194| 194| IsAlly: function() { return true; }, | 195| 195| IsMutualAlly: function() {return false; }, | 196| 196| IsNeutral: function() { return false; }, | 197| |- IsEnemy: function() { return false; }, | | 197|+ "IsEnemy": function() { return false; }, | 198| 198| GetDisabledTemplates: function() { return {}; }, | 199| 199| GetDisabledTechnologies: function() { return {}; }, | 200| 200| GetSpyCostMultiplier: function() { return 1; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDisabledTemplates' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 195| 195| IsMutualAlly: function() {return false; }, | 196| 196| IsNeutral: function() { return false; }, | 197| 197| IsEnemy: function() { return false; }, | 198| |- GetDisabledTemplates: function() { return {}; }, | | 198|+ "GetDisabledTemplates": function() { return {}; }, | 199| 199| GetDisabledTechnologies: function() { return {}; }, | 200| 200| GetSpyCostMultiplier: function() { return 1; }, | 201| 201| HasSharedDropsites: function() { return false; }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetDisabledTechnologies' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 196| 196| IsNeutral: function() { return false; }, | 197| 197| IsEnemy: function() { return false; }, | 198| 198| GetDisabledTemplates: function() { return {}; }, | 199| |- GetDisabledTechnologies: function() { return {}; }, | | 199|+ "GetDisabledTechnologies": function() { return {}; }, | 200| 200| GetSpyCostMultiplier: function() { return 1; }, | 201| 201| HasSharedDropsites: function() { return false; }, | 202| 202| HasSharedLos: function() { return false; } | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSpyCostMultiplier' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 197| 197| IsEnemy: function() { return false; }, | 198| 198| GetDisabledTemplates: function() { return {}; }, | 199| 199| GetDisabledTechnologies: function() { return {}; }, | 200| |- GetSpyCostMultiplier: function() { return 1; }, | | 200|+ "GetSpyCostMultiplier": function() { return 1; }, | 201| 201| HasSharedDropsites: function() { return false; }, | 202| 202| HasSharedLos: function() { return false; } | 203| 203| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasSharedDropsites' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 198| 198| GetDisabledTemplates: function() { return {}; }, | 199| 199| GetDisabledTechnologies: function() { return {}; }, | 200| 200| GetSpyCostMultiplier: function() { return 1; }, | 201| |- HasSharedDropsites: function() { return false; }, | | 201|+ "HasSharedDropsites": function() { return false; }, | 202| 202| HasSharedLos: function() { return false; } | 203| 203| }); | 204| 204| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'HasSharedLos' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 199| 199| GetDisabledTechnologies: function() { return {}; }, | 200| 200| GetSpyCostMultiplier: function() { return 1; }, | 201| 201| HasSharedDropsites: function() { return false; }, | 202| |- HasSharedLos: function() { return false; } | | 202|+ "HasSharedLos": function() { return false; } | 203| 203| }); | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLimits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 203| 203| }); | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | 206| |- GetLimits: function() { return {"Bar": 20}; }, | | 206|+ "GetLimits": function() { return {"Bar": 20}; }, | 207| 207| GetCounts: function() { return {"Bar": 0}; }, | 208| 208| GetLimitChangers: function() {return {"Bar": {}}; } | 209| 209| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 203| 203| }); | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | 206| |- GetLimits: function() { return {"Bar": 20}; }, | | 206|+ GetLimits: function() { return { "Bar": 20}; }, | 207| 207| GetCounts: function() { return {"Bar": 0}; }, | 208| 208| GetLimitChangers: function() {return {"Bar": {}}; } | 209| 209| }); | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 203| 203| }); | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | 206| |- GetLimits: function() { return {"Bar": 20}; }, | | 206|+ GetLimits: function() { return {"Bar": 20 }; }, | 207| 207| GetCounts: function() { return {"Bar": 0}; }, | 208| 208| GetLimitChangers: function() {return {"Bar": {}}; } | 209| 209| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | 206| 206| GetLimits: function() { return {"Bar": 20}; }, | 207| |- GetCounts: function() { return {"Bar": 0}; }, | | 207|+ "GetCounts": function() { return {"Bar": 0}; }, | 208| 208| GetLimitChangers: function() {return {"Bar": {}}; } | 209| 209| }); | 210| 210| | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | 206| 206| GetLimits: function() { return {"Bar": 20}; }, | 207| |- GetCounts: function() { return {"Bar": 0}; }, | | 207|+ GetCounts: function() { return { "Bar": 0}; }, | 208| 208| GetLimitChangers: function() {return {"Bar": {}}; } | 209| 209| }); | 210| 210| | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 204| 204| | 205| 205| AddMock(101, IID_EntityLimits, { | 206| 206| GetLimits: function() { return {"Bar": 20}; }, | 207| |- GetCounts: function() { return {"Bar": 0}; }, | | 207|+ GetCounts: function() { return {"Bar": 0 }; }, | 208| 208| GetLimitChangers: function() {return {"Bar": {}}; } | 209| 209| }); | 210| 210| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetLimitChangers' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 205| 205| AddMock(101, IID_EntityLimits, { | 206| 206| GetLimits: function() { return {"Bar": 20}; }, | 207| 207| GetCounts: function() { return {"Bar": 0}; }, | 208| |- GetLimitChangers: function() {return {"Bar": {}}; } | | 208|+ "GetLimitChangers": function() {return {"Bar": {}}; } | 209| 209| }); | 210| 210| | 211| 211| AddMock(101, IID_TechnologyManager, { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 205| 205| AddMock(101, IID_EntityLimits, { | 206| 206| GetLimits: function() { return {"Bar": 20}; }, | 207| 207| GetCounts: function() { return {"Bar": 0}; }, | 208| |- GetLimitChangers: function() {return {"Bar": {}}; } | | 208|+ GetLimitChangers: function() {return { "Bar": {}}; } | 209| 209| }); | 210| 210| | 211| 211| AddMock(101, IID_TechnologyManager, { | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 205| 205| AddMock(101, IID_EntityLimits, { | 206| 206| GetLimits: function() { return {"Bar": 20}; }, | 207| 207| GetCounts: function() { return {"Bar": 0}; }, | 208| |- GetLimitChangers: function() {return {"Bar": {}}; } | | 208|+ GetLimitChangers: function() {return {"Bar": {} }; } | 209| 209| }); | 210| 210| | 211| 211| AddMock(101, IID_TechnologyManager, { | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetBasicStatistics' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 218| 218| }); | 219| 219| | 220| 220| AddMock(101, IID_StatisticsTracker, { | 221| |- GetBasicStatistics: function() { | | 221|+ "GetBasicStatistics": function() { | 222| 222| return { | 223| 223| "resourcesGathered": { | 224| 224| "food": 100, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'GetSequences' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 230| 230| "percentMapExplored": 10 | 231| 231| }; | 232| 232| }, | 233| |- GetSequences: function() { | | 233|+ "GetSequences": function() { | 234| 234| return { | 235| 235| "unitsTrained": [0, 10], | 236| 236| "unitsLost": [0, 9], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseTrainedUnitsCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 255| 255| "teamPeakPercentOfMapControlled": [0, 10] | 256| 256| }; | 257| 257| }, | 258| |- IncreaseTrainedUnitsCounter: function() { return 1; }, | | 258|+ "IncreaseTrainedUnitsCounter": function() { return 1; }, | 259| 259| IncreaseConstructedBuildingsCounter: function() { return 1; }, | 260| 260| IncreaseBuiltCivCentresCounter: function() { return 1; } | 261| 261| }); | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseConstructedBuildingsCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 256| 256| }; | 257| 257| }, | 258| 258| IncreaseTrainedUnitsCounter: function() { return 1; }, | 259| |- IncreaseConstructedBuildingsCounter: function() { return 1; }, | | 259|+ "IncreaseConstructedBuildingsCounter": function() { return 1; }, | 260| 260| IncreaseBuiltCivCentresCounter: function() { return 1; } | 261| 261| }); | 262| 262| | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'IncreaseBuiltCivCentresCounter' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 257| 257| }, | 258| 258| IncreaseTrainedUnitsCounter: function() { return 1; }, | 259| 259| IncreaseConstructedBuildingsCounter: function() { return 1; }, | 260| |- IncreaseBuiltCivCentresCounter: function() { return 1; } | | 260|+ "IncreaseBuiltCivCentresCounter": function() { return 1; } | 261| 261| }); | 262| 262| | 263| 263| // Note: property order matters when using TS_ASSERT_UNEVAL_EQUALS, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'players' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 264| 264| // because uneval preserves property order. So make sure this object | 265| 265| // matches the ordering in GuiInterface. | 266| 266| TS_ASSERT_UNEVAL_EQUALS(cmp.GetSimulationState(), { | 267| |- players: [ | | 267|+ "players": [ | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'name' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 266| 266| TS_ASSERT_UNEVAL_EQUALS(cmp.GetSimulationState(), { | 267| 267| players: [ | 268| 268| { | 269| |- name: "Player 1", | | 269|+ "name": "Player 1", | 270| 270| civ: "gaia", | 271| 271| color: { r:1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'civ' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 267| 267| players: [ | 268| 268| { | 269| 269| name: "Player 1", | 270| |- civ: "gaia", | | 270|+ "civ": "gaia", | 271| 271| color: { r:1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'color' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ "color": { r:1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'r' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { "r":1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'r'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r: 1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'g' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r:1, "g":1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'g'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r:1, g: 1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'b' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r:1, g:1, "b":1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'b'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r:1, g:1, b: 1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'a' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r:1, g:1, b:1, "a":1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (key-spacing): | | Missing space before value for key 'a'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 268| 268| { | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| |- color: { r:1, g:1, b:1, a:1 }, | | 271|+ color: { r:1, g:1, b:1, a: 1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'controlsAll' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 269| 269| name: "Player 1", | 270| 270| civ: "gaia", | 271| 271| color: { r:1, g:1, b:1, a:1 }, | 272| |- controlsAll: false, | | 272|+ "controlsAll": false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | 275| 275| popMax: 200, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popCount' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 270| 270| civ: "gaia", | 271| 271| color: { r:1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| |- popCount: 10, | | 273|+ "popCount": 10, | 274| 274| popLimit: 20, | 275| 275| popMax: 200, | 276| 276| panelEntities: [], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popLimit' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 271| 271| color: { r:1, g:1, b:1, a:1 }, | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| |- popLimit: 20, | | 274|+ "popLimit": 20, | 275| 275| popMax: 200, | 276| 276| panelEntities: [], | 277| 277| resourceCounts: { food: 100 }, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'popMax' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 272| 272| controlsAll: false, | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | 275| |- popMax: 200, | | 275|+ "popMax": 200, | 276| 276| panelEntities: [], | 277| 277| resourceCounts: { food: 100 }, | 278| 278| trainingBlocked: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'panelEntities' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 273| 273| popCount: 10, | 274| 274| popLimit: 20, | 275| 275| popMax: 200, | 276| |- panelEntities: [], | | 276|+ "panelEntities": [], | 277| 277| resourceCounts: { food: 100 }, | 278| 278| trainingBlocked: false, | 279| 279| state: "active", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'resourceCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 274| 274| popLimit: 20, | 275| 275| popMax: 200, | 276| 276| panelEntities: [], | 277| |- resourceCounts: { food: 100 }, | | 277|+ "resourceCounts": { food: 100 }, | 278| 278| trainingBlocked: false, | 279| 279| state: "active", | 280| 280| team: -1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'food' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 274| 274| popLimit: 20, | 275| 275| popMax: 200, | 276| 276| panelEntities: [], | 277| |- resourceCounts: { food: 100 }, | | 277|+ resourceCounts: { "food": 100 }, | 278| 278| trainingBlocked: false, | 279| 279| state: "active", | 280| 280| team: -1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'trainingBlocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 275| 275| popMax: 200, | 276| 276| panelEntities: [], | 277| 277| resourceCounts: { food: 100 }, | 278| |- trainingBlocked: false, | | 278|+ "trainingBlocked": false, | 279| 279| state: "active", | 280| 280| team: -1, | 281| 281| teamsLocked: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'state' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 276| 276| panelEntities: [], | 277| 277| resourceCounts: { food: 100 }, | 278| 278| trainingBlocked: false, | 279| |- state: "active", | | 279|+ "state": "active", | 280| 280| team: -1, | 281| 281| teamsLocked: false, | 282| 282| cheatsEnabled: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'team' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 277| 277| resourceCounts: { food: 100 }, | 278| 278| trainingBlocked: false, | 279| 279| state: "active", | 280| |- team: -1, | | 280|+ "team": -1, | 281| 281| teamsLocked: false, | 282| 282| cheatsEnabled: false, | 283| 283| disabledTemplates: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'teamsLocked' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 278| 278| trainingBlocked: false, | 279| 279| state: "active", | 280| 280| team: -1, | 281| |- teamsLocked: false, | | 281|+ "teamsLocked": false, | 282| 282| cheatsEnabled: false, | 283| 283| disabledTemplates: {}, | 284| 284| disabledTechnologies: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'cheatsEnabled' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 279| 279| state: "active", | 280| 280| team: -1, | 281| 281| teamsLocked: false, | 282| |- cheatsEnabled: false, | | 282|+ "cheatsEnabled": false, | 283| 283| disabledTemplates: {}, | 284| 284| disabledTechnologies: {}, | 285| 285| hasSharedDropsites: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'disabledTemplates' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 280| 280| team: -1, | 281| 281| teamsLocked: false, | 282| 282| cheatsEnabled: false, | 283| |- disabledTemplates: {}, | | 283|+ "disabledTemplates": {}, | 284| 284| disabledTechnologies: {}, | 285| 285| hasSharedDropsites: false, | 286| 286| hasSharedLos: false, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'disabledTechnologies' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 281| 281| teamsLocked: false, | 282| 282| cheatsEnabled: false, | 283| 283| disabledTemplates: {}, | 284| |- disabledTechnologies: {}, | | 284|+ "disabledTechnologies": {}, | 285| 285| hasSharedDropsites: false, | 286| 286| hasSharedLos: false, | 287| 287| spyCostMultiplier: 1, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'hasSharedDropsites' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 282| 282| cheatsEnabled: false, | 283| 283| disabledTemplates: {}, | 284| 284| disabledTechnologies: {}, | 285| |- hasSharedDropsites: false, | | 285|+ "hasSharedDropsites": false, | 286| 286| hasSharedLos: false, | 287| 287| spyCostMultiplier: 1, | 288| 288| phase: "village", | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'hasSharedLos' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 283| 283| disabledTemplates: {}, | 284| 284| disabledTechnologies: {}, | 285| 285| hasSharedDropsites: false, | 286| |- hasSharedLos: false, | | 286|+ "hasSharedLos": false, | 287| 287| spyCostMultiplier: 1, | 288| 288| phase: "village", | 289| 289| isAlly: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'spyCostMultiplier' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 284| 284| disabledTechnologies: {}, | 285| 285| hasSharedDropsites: false, | 286| 286| hasSharedLos: false, | 287| |- spyCostMultiplier: 1, | | 287|+ "spyCostMultiplier": 1, | 288| 288| phase: "village", | 289| 289| isAlly: [false, false], | 290| 290| isMutualAlly: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'phase' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 285| 285| hasSharedDropsites: false, | 286| 286| hasSharedLos: false, | 287| 287| spyCostMultiplier: 1, | 288| |- phase: "village", | | 288|+ "phase": "village", | 289| 289| isAlly: [false, false], | 290| 290| isMutualAlly: [false, false], | 291| 291| isNeutral: [false, false], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 286| 286| hasSharedLos: false, | 287| 287| spyCostMultiplier: 1, | 288| 288| phase: "village", | 289| |- isAlly: [false, false], | | 289|+ "isAlly": [false, false], | 290| 290| isMutualAlly: [false, false], | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isMutualAlly' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 287| 287| spyCostMultiplier: 1, | 288| 288| phase: "village", | 289| 289| isAlly: [false, false], | 290| |- isMutualAlly: [false, false], | | 290|+ "isMutualAlly": [false, false], | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isNeutral' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 288| 288| phase: "village", | 289| 289| isAlly: [false, false], | 290| 290| isMutualAlly: [false, false], | 291| |- isNeutral: [false, false], | | 291|+ "isNeutral": [false, false], | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'isEnemy' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 289| 289| isAlly: [false, false], | 290| 290| isMutualAlly: [false, false], | 291| 291| isNeutral: [false, false], | 292| |- isEnemy: [true, true], | | 292|+ "isEnemy": [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityLimits' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 290| 290| isMutualAlly: [false, false], | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| |- entityLimits: {"Foo": 10}, | | 293|+ "entityLimits": {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 290| 290| isMutualAlly: [false, false], | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| |- entityLimits: {"Foo": 10}, | | 293|+ entityLimits: { "Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 290| 290| isMutualAlly: [false, false], | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| |- entityLimits: {"Foo": 10}, | | 293|+ entityLimits: {"Foo": 10 }, | 294| 294| entityCounts: {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityCounts' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| |- entityCounts: {"Foo": 5}, | | 294|+ "entityCounts": {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| |- entityCounts: {"Foo": 5}, | | 294|+ entityCounts: { "Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 291| 291| isNeutral: [false, false], | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| |- entityCounts: {"Foo": 5}, | | 294|+ entityCounts: {"Foo": 5 }, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'entityLimitChangers' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| |- entityLimitChangers: {"Foo": {}}, | | 295|+ "entityLimitChangers": {"Foo": {}}, | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | 298| 298| researchedTechs: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required after '{'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| |- entityLimitChangers: {"Foo": {}}, | | 295|+ entityLimitChangers: { "Foo": {}}, | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | 298| 298| researchedTechs: new Set(), | | [NORMAL] ESLintBear (object-curly-spacing): | | A space is required before '}'. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 292| 292| isEnemy: [true, true], | 293| 293| entityLimits: {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| |- entityLimitChangers: {"Foo": {}}, | | 295|+ entityLimitChangers: {"Foo": {} }, | 296| 296| researchQueued: new Map(), | 297| 297| researchStarted: new Set(), | 298| 298| researchedTechs: new Set(), | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchQueued' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 293| 293| entityLimits: {"Foo": 10}, | 294| 294| entityCounts: {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| |- researchQueued: new Map(), | | 296|+ "researchQueued": new Map(), | 297| 297| researchStarted: new Set(), | 298| 298| researchedTechs: new Set(), | 299| 299| classCounts: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchStarted' found. |----| | /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | |++++| /zpool0/trunk/binaries/data/mods/public/simulation/components/tests/test_GuiInterface.js | 294| 294| entityCounts: {"Foo": 5}, | 295| 295| entityLimitChangers: {"Foo": {}}, | 296| 296| researchQueued: new Map(), | 297| |- researchStarted: new Set(), | | 297|+ "researchStarted": new Set(), | 298| 298| researchedTechs: new Set(), | 299| 299| classCounts: {}, | 300| 300| typeCountsByClass: {}, | | [NORMAL] ESLintBear (quote-props): | | Unquoted property 'researchedTechs' found. |----| | /zpool0/trunk/binaries/data/mods/public/sim |