Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions .eslintignore

This file was deleted.

1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ jobs:
./src/ \
./scripts/ \
./typings/ \
--ext .js,.ts,.vue,.md \
--no-error-on-unmatched-pattern \
--exit-on-fatal-error \
--report-unused-disable-directives \
Expand Down
2 changes: 1 addition & 1 deletion build/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ if ($_RUN_STEP_ESLINT) {
$start_time = now
print_start_message "[🚨] run ESLint"
enable_debugging
yarn eslint ./docs/.vuepress/ ./static/ ./prebuild/ ./build/ ./src/ ./scripts/ ./typings/ --ext .js, .ts, .vue, .md --no-error-on-unmatched-pattern --exit-on-fatal-error --report-unused-disable-directives --cache --cache-strategy content --fix
yarn eslint ./docs/.vuepress/ ./static/ ./prebuild/ ./build/ ./src/ ./scripts/ ./typings/ --no-error-on-unmatched-pattern --exit-on-fatal-error --report-unused-disable-directives --cache --cache-strategy content --fix
if (!$?) {
exit 1
}
Expand Down
5 changes: 2 additions & 3 deletions build/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ if [[ $_RUN_STEP_ENV = true ]]; then
enable_debugging
ref="$REF"
BRANCH="dummy"

if [[ $ref == "refs/heads/master" ]]; then
BRANCH="stable"
elif [[ $ref == "refs/heads/dev" ]]; then
Expand Down Expand Up @@ -310,7 +310,6 @@ if [[ $_RUN_STEP_ESLINT = true ]]; then
./src/ \
./scripts/ \
./typings/ \
--ext .js,.ts,.vue,.md \
--no-error-on-unmatched-pattern \
--exit-on-fatal-error \
--report-unused-disable-directives \
Expand Down Expand Up @@ -407,4 +406,4 @@ fi

print_end_message "Total" "$total_start_time"

exit 0
exit 0
1 change: 0 additions & 1 deletion docs/.vuepress/.eslintrc.json

This file was deleted.

1 change: 1 addition & 0 deletions docs/.vuepress/theme/components/Page.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- eslint-disable vue/multi-word-component-names -->
<template>
<main class="page">
<slot name="top" />
Expand Down
Loading