mirror of
https://github.com/prymitive/karma
synced 2026-05-07 03:26:52 +00:00
fix(ui): remove excludes from tsconfig
This commit is contained in:
committed by
Łukasz Mierzwa
parent
579e4bfd53
commit
da9d9085cc
@@ -1,5 +1,3 @@
|
||||
import React from "react";
|
||||
|
||||
import { storiesOf } from "@storybook/react";
|
||||
|
||||
import fetchMock from "fetch-mock";
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
import React from "react";
|
||||
|
||||
import { storiesOf } from "@storybook/react";
|
||||
|
||||
import { MockSilence } from "../../__fixtures__/Alerts";
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
import React from "react";
|
||||
|
||||
import { storiesOf } from "@storybook/react";
|
||||
|
||||
import {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import React, { FC } from "react";
|
||||
import { FC } from "react";
|
||||
|
||||
import { storiesOf } from "@storybook/react";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import React, { FC } from "react";
|
||||
import { FC } from "react";
|
||||
|
||||
import fetchMock from "fetch-mock";
|
||||
|
||||
@@ -249,11 +249,13 @@ storiesOf("SilenceModal", module)
|
||||
name: "thisIsAveryLongNameToTestMatcherWrapping",
|
||||
value: "valueIsAlsoAbitLong",
|
||||
isRegex: false,
|
||||
isEqual: true,
|
||||
});
|
||||
silence.matchers.push({
|
||||
name: "alertname",
|
||||
value: "(foo1|foo2|foo3|foo4)",
|
||||
isRegex: true,
|
||||
isEqual: true,
|
||||
});
|
||||
silence.id = `silence${index}`;
|
||||
silences.push({
|
||||
|
||||
@@ -18,6 +18,5 @@
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noUnusedLocals": true
|
||||
},
|
||||
"include": ["src"],
|
||||
"exclude": ["**/*.stories.tsx"]
|
||||
"include": ["src"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user