Skip to content

Commit 6a3d30b

Browse files
Lightning00BladeDevtools-frontend LUCI CQ
authored andcommitted
Fix Lint command
Bug: none Change-Id: I1444862dc1340527723dd7b1b216ee92daee4418 Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/7157048 Auto-Submit: Nikolay Vitkov <[email protected]> Commit-Queue: Ergün Erdoğmuş <[email protected]> Reviewed-by: Ergün Erdoğmuş <[email protected]> Commit-Queue: Nikolay Vitkov <[email protected]> Owners-Override: Ergün Erdoğmuş <[email protected]>
1 parent ce2ae8d commit 6a3d30b

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

front_end/models/trace/lantern/metrics/FirstContentfulPaint.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ describe('Metrics: Lantern FCP', function() {
4141

4242
it('should handle negative request networkEndTime', async () => {
4343
const data = await getComputationDataFromFixture(this, {trace});
44-
// eslint-disable-next-line @devtools/prefer-assert-strict-equal
44+
4545
assert(data.graph.type === 'network');
4646
data.graph.request.networkEndTime = -1;
4747
const result = FirstContentfulPaint.compute(data);

front_end/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"compilerOptions": {
44
"allowUmdGlobalAccess": true,
55
"outDir": "ignored",
6+
"rootDir": ".",
67
"target": "ES2023",
78
"lib": [
89
"ES2023",

scripts/eslint_rules/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"moduleResolution": "nodenext",
66
"lib": ["esnext", "dom"],
77
"outDir": "ignored",
8+
"rootDir": ".",
89
"checkJs": true,
910
"noEmit": true,
1011
"noImplicitAny": true,

0 commit comments

Comments
 (0)