Skip to content

Commit

Permalink
Merge pull request #635 from infnibor/main
Browse files Browse the repository at this point in the history
Plugin and configuration updates and minor fixes
  • Loading branch information
appujet authored Jul 23, 2024
2 parents 69bec6d + 10230af commit 3e1ea17
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 53 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/biome.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: BiomeLint

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '36 1 * * 6'

jobs:
biome:
name: Run biome linting
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Biome
run: npm install -g @biomejs/biome

- name: Run Biome Lint
run: biome lint --write src/
50 changes: 0 additions & 50 deletions .github/workflows/eslint.yml

This file was deleted.

7 changes: 4 additions & 3 deletions Lavalink/example.application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ plugins:
lyrics-sources:
spotify: false # Enable Spotify lyrics source
deezer: false # Enable Deezer lyrics source
youtube: true # Enable YouTube lyrics source
youtube: false # Enable YouTube lyrics source
yandexmusic: false # Enable Yandex Music lyrics source
spotify:
clientId: "your client id"
Expand All @@ -43,6 +43,7 @@ plugins:
countryCode: "US" # the country code you want to use for filtering the artists top tracks. See https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
playlistLoadLimit: 6 # The number of pages at 100 tracks each
albumLoadLimit: 6 # The number of pages at 50 tracks each
localFiles: false # Enable local files support with Spotify playlists. Please note `uri` & `iscr` will be `null` & `identifier` will be `"local"`
applemusic:
countryCode: "US" # the country code you want to use for filtering the artists top tracks and language. See https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
mediaAPIToken: "your apple music api token" # apple music api token
Expand Down Expand Up @@ -88,9 +89,9 @@ lavalink:
snapshot: false # set to true if you want to use snapshot builds.
- dependency: "com.github.topi314.lavasearch:lavasearch-plugin:1.0.0"
snapshot: false # set to true if you want to use snapshot builds.
- dependency: "com.github.topi314.lavasrc:lavasrc-plugin:4.1.1"
- dependency: "com.github.topi314.lavasrc:lavasrc-plugin:4.2.0"
snapshot: false # set to true if you want to use snapshot builds.
- dependency: "com.github.topi314.sponsorblock:sponsorblock-plugin:3.0.0"
- dependency: "com.github.topi314.sponsorblock:sponsorblock-plugin:3.0.1"
snapshot: false # set to true if you want to use snapshot builds.
- dependency: "dev.lavalink.youtube:youtube-plugin:f22d382b7caed0068cbb79eb4cd87ff92e9b3486"
snapshot: true # set to true if you want to use snapshot builds.
Expand Down

0 comments on commit 3e1ea17

Please sign in to comment.