Skip to content

Commit

Permalink
feat: updated (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
veritem committed Mar 25, 2023
1 parent 9b6f460 commit 1f2c59a
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 111 deletions.
1 change: 0 additions & 1 deletion README.md
Expand Up @@ -97,7 +97,6 @@ To use the all configuration, extend it in your `.eslintrc` file:
| [no-mocks-import](docs/rules/no-mocks-import.md) | Disallow importing from __mocks__ directory | 🌐 | | |
| [no-restricted-matchers](docs/rules/no-restricted-matchers.md) | Disallow the use of certain matchers | 🌐 | | |
| [no-restricted-vi-methods](docs/rules/no-restricted-vi-methods.md) | Disallow specific `vi.` methods | 🌐 | | |
| [no-skipped-tests](docs/rules/no-skipped-tests.md) | Disallow skipped tests | 🌐 | | |
| [no-standalone-expect](docs/rules/no-standalone-expect.md) | Disallow using `expect` outside of `it` or `test` blocks | 🌐 | | |
| [no-test-prefixes](docs/rules/no-test-prefixes.md) | Disallow using `test` as a prefix | 🌐 | 🔧 | |
| [no-test-return-statement](docs/rules/no-test-return-statement.md) | Disallow return statements in tests | 🌐 | | |
Expand Down
31 changes: 0 additions & 31 deletions docs/rules/no-skipped-tests.md

This file was deleted.

3 changes: 0 additions & 3 deletions src/index.ts
@@ -1,7 +1,6 @@
import lowerCaseTitle, { RULE_NAME as lowerCaseTitleName } from './rules/prefer-lowercase-title'
import maxNestedDescribe, { RULE_NAME as maxNestedDescribeName } from './rules/max-nested-describe'
import noIdenticalTitle, { RULE_NAME as noIdenticalTitleName } from './rules/no-identical-title'
import noSkippedTests, { RULE_NAME as noSkippedTestsName } from './rules/no-skipped-tests'
import noFocusedTests, { RULE_NAME as noFocusedTestsName } from './rules/no-focused-tests'
import noConditionalTest, { RULE_NAME as noConditionalTests } from './rules/no-conditional-tests'
import expectExpect, { RULE_NAME as expectedExpect } from './rules/expect-expect'
Expand Down Expand Up @@ -40,7 +39,6 @@ const createConfig = (rules: Record<string, string>) => ({
})

const allRules = {
[noSkippedTestsName]: 'warn',
[lowerCaseTitleName]: 'warn',
[maxNestedDescribeName]: 'warn',
[noFocusedTestsName]: 'warn',
Expand Down Expand Up @@ -77,7 +75,6 @@ const recommended = {

export default {
rules: {
[noSkippedTestsName]: noSkippedTests,
[lowerCaseTitleName]: lowerCaseTitle,
[maxNestedDescribeName]: maxNestedDescribe,
[noIdenticalTitleName]: noIdenticalTitle,
Expand Down
29 changes: 0 additions & 29 deletions src/rules/no-skipped-tests.test.ts

This file was deleted.

47 changes: 0 additions & 47 deletions src/rules/no-skipped-tests.ts

This file was deleted.

0 comments on commit 1f2c59a

Please sign in to comment.