forked from cucumber/cucumber-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependency-lint.yml
59 lines (56 loc) · 2.02 KB
/
dependency-lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# See https://github.com/charlierudolph/dependency-lint/blob/v4.2.0/docs/configuration.md
# for a detailed explanation of the options
executedModules:
npmScripts:
dev:
- build
- docs:ci
- docs:local
- lint
- publish
- test
- test-coverage
- version
ignoreErrors:
missing: []
shouldBeDependency: []
shouldBeDevDependency:
- '@cucumber/message-streams' # peer dependency of @cucumber/gherkin-streams
unused:
- '@cucumber/compatibility-kit' # files dynamically loaded in cck test, not require'd
- '@typescript-eslint/eslint-plugin' # peer dependency of standard-with-typescript
- '@typescript-eslint/parser' # peer dependency of @typescript-eslint/eslint-plugin
- '@types/*' # type definitions
- bluebird # features/generator_step_definitions.feature
- coffeescript # features/compiler.feature
- eslint-config-prettier # .eslintrc.yml - extends - prettier
- eslint-config-standard-with-typescript # .eslintrc.yml - extends - standard-with-typescript
- eslint-plugin-import # peer dependency of eslint-config-standard-with-typescript
- eslint-plugin-node # peer dependency of eslint-config-standard-with-typescript
- eslint-plugin-prettier # .eslintrc.yml - extends - prettier
- eslint-plugin-promise # peer dependency of eslint-config-standard-with-typescript
- eslint-plugin-standard # peer dependency of eslint-config-standard-with-typescript
- prettier # peer dependency of eslint-plugin-prettier
- ts-node # .mocharc.yml / cucumber.js
requiredModules:
files:
dev:
- '{compatibility,features,scripts,test}/**/*'
- '**/*_spec.ts'
- 'test-d/**/*.ts'
- 'example/index.ts'
- '**/test_helpers.ts'
ignore:
- coverage/**/*
- 'dist/**/*'
- 'lib/**/*'
- 'node_modules/**/*'
- 'src/importer.js'
- 'tmp/**/*'
root: '**/*.{js,ts}'
stripLoaders: false
transpilers:
- extension: .ts
fnName: transpileModule
module: typescript
resultKey: outputText