Skip to content

Commit 1f2c59a

Browse files
authoredMar 25, 2023
feat: updated (#113)
1 parent 9b6f460 commit 1f2c59a

File tree

5 files changed

+0
-111
lines changed

5 files changed

+0
-111
lines changed
 

‎README.md

-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ To use the all configuration, extend it in your `.eslintrc` file:
9797
| [no-mocks-import](docs/rules/no-mocks-import.md) | Disallow importing from __mocks__ directory | 🌐 | | |
9898
| [no-restricted-matchers](docs/rules/no-restricted-matchers.md) | Disallow the use of certain matchers | 🌐 | | |
9999
| [no-restricted-vi-methods](docs/rules/no-restricted-vi-methods.md) | Disallow specific `vi.` methods | 🌐 | | |
100-
| [no-skipped-tests](docs/rules/no-skipped-tests.md) | Disallow skipped tests | 🌐 | | |
101100
| [no-standalone-expect](docs/rules/no-standalone-expect.md) | Disallow using `expect` outside of `it` or `test` blocks | 🌐 | | |
102101
| [no-test-prefixes](docs/rules/no-test-prefixes.md) | Disallow using `test` as a prefix | 🌐 | 🔧 | |
103102
| [no-test-return-statement](docs/rules/no-test-return-statement.md) | Disallow return statements in tests | 🌐 | | |

‎docs/rules/no-skipped-tests.md

-31
This file was deleted.

‎src/index.ts

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import lowerCaseTitle, { RULE_NAME as lowerCaseTitleName } from './rules/prefer-lowercase-title'
22
import maxNestedDescribe, { RULE_NAME as maxNestedDescribeName } from './rules/max-nested-describe'
33
import noIdenticalTitle, { RULE_NAME as noIdenticalTitleName } from './rules/no-identical-title'
4-
import noSkippedTests, { RULE_NAME as noSkippedTestsName } from './rules/no-skipped-tests'
54
import noFocusedTests, { RULE_NAME as noFocusedTestsName } from './rules/no-focused-tests'
65
import noConditionalTest, { RULE_NAME as noConditionalTests } from './rules/no-conditional-tests'
76
import expectExpect, { RULE_NAME as expectedExpect } from './rules/expect-expect'
@@ -40,7 +39,6 @@ const createConfig = (rules: Record<string, string>) => ({
4039
})
4140

4241
const allRules = {
43-
[noSkippedTestsName]: 'warn',
4442
[lowerCaseTitleName]: 'warn',
4543
[maxNestedDescribeName]: 'warn',
4644
[noFocusedTestsName]: 'warn',
@@ -77,7 +75,6 @@ const recommended = {
7775

7876
export default {
7977
rules: {
80-
[noSkippedTestsName]: noSkippedTests,
8178
[lowerCaseTitleName]: lowerCaseTitle,
8279
[maxNestedDescribeName]: maxNestedDescribe,
8380
[noIdenticalTitleName]: noIdenticalTitle,

‎src/rules/no-skipped-tests.test.ts

-29
This file was deleted.

‎src/rules/no-skipped-tests.ts

-47
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.