Skip to content

Commit 9ff9e6f

Browse files
authored
Merge pull request #1 from RooVetGit/feature/addBypassForWriteAndExecute
2 parents 4658e5c + e2fb6b2 commit 9ff9e6f

File tree

12 files changed

+3670
-483
lines changed

12 files changed

+3670
-483
lines changed

ellipsis.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
version: 1.3
2+
pr_review:
3+
4+
# Modify confidence_threshold to show fewer/more comments. Increase this to show fewer, but higher quality comments.
5+
# If there’s too much noise, we suggest 0.9. The default value is 0.7.
6+
confidence_threshold: 0.7
7+
8+
# If quiet mode is enabled, Ellipsis will only leave reviews when it has comments, so “Looks good to me” reviews
9+
# will be skipped. This can reduce clutter.
10+
quiet: false
11+
12+
# You can disable automatic code review using auto_review_enabled. This will override any global settings you
13+
# have configured via the web UI.
14+
auto_review_enabled: true
15+
16+
# You can enable auto-review on draft PRs using auto_review_draft. This will override any global settings you
17+
# have configured via the web UI.
18+
auto_review_draft: false
19+
20+
# You can allow Ellipsis to approve PRs using enable_approve_prs. Note: in common branch GitHub protection configurations,
21+
# the Ellipsis approval will count towards the approval total and allow the PR to be merged when it otherwise may not be.
22+
enable_approve_prs: false

jest.config.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/** @type {import('ts-jest').JestConfigWithTsJest} */
2+
module.exports = {
3+
preset: 'ts-jest',
4+
testEnvironment: 'node',
5+
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
6+
transform: {
7+
'^.+\\.tsx?$': ['ts-jest', {
8+
tsconfig: 'tsconfig.json'
9+
}]
10+
},
11+
testMatch: ['**/__tests__/**/*.test.ts'],
12+
moduleNameMapper: {
13+
'^vscode$': '<rootDir>/node_modules/@types/vscode/index.d.ts'
14+
},
15+
setupFiles: [],
16+
globals: {
17+
'ts-jest': {
18+
diagnostics: false
19+
}
20+
}
21+
};

0 commit comments

Comments
 (0)