Skip to content

Commit 7d48023

Browse files
Merge pull request #84 from phyzical/feature/adding-support-for-artist
Feature/adding support for artist
2 parents 8852fd0 + 87738ab commit 7d48023

17 files changed

+12422
-1757
lines changed

Diff for: .editorconfig

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[*.js]
2+
end_of_line = lf
3+
tab_width = 2
4+
indent_size = 2
5+
indent_style = space
6+
max_line_length = 80
7+
semi = true

Diff for: .eslintrc

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"parserOptions": {
3+
"ecmaVersion": 2018,
4+
"sourceType": "module"
5+
},
6+
"rules": {
7+
"no-console": 0,
8+
"semi": 1,
9+
"comma-dangle": [1, "always-multiline"],
10+
"quotes": ["error", "single"],
11+
"arrow-parens": ["error", "as-needed"],
12+
"no-tabs": 1,
13+
"array-bracket-spacing": 1,
14+
"max-len": [1, 80]
15+
}
16+
}

Diff for: Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
FROM debian:unstable
1+
FROM debian
22

33
RUN apt-get update && apt-get install --no-install-recommends --assume-yes npm ffmpeg && rm -rf /var/lib/apt/lists/*
44
RUN npm install -g spotify-dl
5-
5+
## uncomment this for local testing
6+
# COPY ./ /usr/local/lib/node_modules/spotify-dl/
67
WORKDIR /download
78
ENTRYPOINT ["spotifydl"]
89
CMD ["--help"]

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ $ spotifydl https://open.spotify.com/track/xyz
6767
```
6868

6969
#### Options
70-
| Flag | Usage |
71-
| ------ | ------ |
72-
| -o | takes valid output path argument |
70+
| Flag | Usage |
71+
| ---- | ------------------------------------------------------------ |
72+
| -o | takes valid output path argument |
7373
| --es | takes extra search string/term to be used for youtube search |
7474

7575
<hr>

0 commit comments

Comments
 (0)