-
Notifications
You must be signed in to change notification settings - Fork 0
/
.codeclimate.yml
42 lines (40 loc) · 1.1 KB
/
.codeclimate.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
# https://docs.codeclimate.com/docs/advanced-configuration
version: 2 # required to adjust maintainability checks
exclude_patterns:
- "**/examples/"
- "scripts/"
- "**/scripts/*.js"
# Jest configuration file ( https://jestjs.io/ )
- "**/jest.config.js"
# Test files
- "**/*.test.ts"
- "**/*.test.cts"
- "**/*.test.mts"
# Test files for tsd ( https://www.npmjs.com/package/tsd )
- "**/*.test-d.ts"
- "**/*.test-d.cts"
- "**/*.test-d.mts"
# Generated files by the FlatBuffers compiler
- "**/flatbuffers/*_generated.ts"
- "**/flatbuffers/*_generated.cts"
- "**/flatbuffers/*_generated.mts"
# Generated files by the Protocol Buffers compiler
- "**/protocol-buffers/*_pb.js"
- "**/protocol-buffers/*_pb.d.ts"
# default exclude patterns
# see https://docs.codeclimate.com/docs/excluding-files-and-folders#section-auto-generated-file-and-folder-exclusions
- "config/"
- "db/"
- "dist/"
- "features/"
- "**/node_modules/"
- "script/"
- "**/spec/"
- "**/test/"
- "**/tests/"
- "Tests/"
- "**/vendor/"
- "**/*_test.go"
- "**/*.d.ts"
- "**/*.d.cts"
- "**/*.d.mts"