Skip to content

Commit dc454f4

Browse files
authored
Merge pull request #2088 from dandi/fix-lint-warnings-passing-ci
Set `--max-warnings` to zero for `eslint`
2 parents 31f6d32 + 6129f57 commit dc454f4

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"build": "vite build",
77
"preview": "vite preview --port 4173",
88
"type-check": "vue-tsc --noEmit",
9-
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
9+
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --max-warnings=0 --ignore-path .gitignore"
1010
},
1111
"dependencies": {
1212
"@apidevtools/json-schema-ref-parser": "^9.0.7",

web/src/views/DandisetLandingView/DandisetLandingView.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ import {
114114
import type { Ref } from 'vue';
115115
import { onBeforeRouteLeave, useRoute, useRouter } from 'vue-router/composables';
116116
import type { NavigationGuardNext, RawLocation, Route } from 'vue-router';
117-
import axios from 'axios';
118117
119118
import DandisetSearchField from '@/components/DandisetSearchField.vue';
120119
import Meditor from '@/components/Meditor/Meditor.vue';

0 commit comments

Comments
 (0)