Skip to content

Commit 92f7e77

Browse files
authored
chore(eslint-config, aggregations): fix enum value; re-enable no-duplicate-enum-values (#7015)
1 parent 7f89c16 commit 92f7e77

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

configs/eslint-config-compass/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ const extraTsRules = {
3737
'@typescript-eslint/no-floating-promises': 'warn',
3838
'@typescript-eslint/no-unsafe-enum-comparison': 'warn',
3939
'@typescript-eslint/no-misused-promises': 'warn',
40-
'@typescript-eslint/no-duplicate-enum-values': 'warn',
4140
};
4241

4342
const tsRules = {

packages/compass-aggregations/src/modules/pipeline-builder/stage-editor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export const enum StageEditorActionTypes {
4242
StagePreviewFetchError = 'compass-aggregations/pipeline-builder/stage-editor/StagePreviewFetchError',
4343
StageRun = 'compass-aggregations/pipeline-builder/stage-editor/StageRun',
4444
StageRunSuccess = 'compass-aggregations/pipeline-builder/stage-editor/StageRunSuccess',
45-
StageRunError = 'compass-aggregations/pipeline-builder/stage-editor/StagePreviewFetchError',
45+
StageRunError = 'compass-aggregations/pipeline-builder/stage-editor/StageRunError',
4646
StageValueChange = 'compass-aggregations/pipeline-builder/stage-editor/StageValueChange',
4747
StageOperatorChange = 'compass-aggregations/pipeline-builder/stage-editor/StageOperatorChange',
4848
StageCollapsedChange = 'compass-aggregations/pipeline-builder/stage-editor/StageCollapsedChange',

0 commit comments

Comments
 (0)