Fix some linter issues

This commit is contained in:
Frédéric Guillot 2022-08-08 21:33:38 -07:00
parent 3eb3ac06b6
commit cecab91298
69 changed files with 73 additions and 176 deletions

View File

@ -17,3 +17,12 @@ updates:
- "fguillot" - "fguillot"
assignees: assignees:
- "fguillot" - "fguillot"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
reviewers:
- "fguillot"
assignees:
- "fguillot"

View File

@ -14,7 +14,7 @@ jobs:
max-parallel: 4 max-parallel: 4
matrix: matrix:
os: [ubuntu-latest, windows-latest, macOS-latest] os: [ubuntu-latest, windows-latest, macOS-latest]
go-version: [1.16, 1.17, 1.18] go-version: [1.18, 1.19]
steps: steps:
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v2 uses: actions/setup-go@v2
@ -42,7 +42,7 @@ jobs:
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v2 uses: actions/setup-go@v2
with: with:
go-version: 1.16 go-version: 1.19
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Install Postgres client - name: Install Postgres client

View File

@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/setup-go@v2 - uses: actions/setup-go@v2
with: with:
go-version: 1.17 go-version: 1.19
- uses: golangci/golangci-lint-action@v2 - uses: golangci/golangci-lint-action@v2
with: with:
args: --skip-dirs tests --disable errcheck --enable sqlclosecheck --enable misspell --enable gofmt --enable goimports --enable whitespace args: --skip-dirs tests --disable errcheck --enable sqlclosecheck --enable misspell --enable gofmt --enable goimports --enable whitespace

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package cli implements command line arguments for Miniflux application. Package cli implements command line arguments for Miniflux application.
*/ */
package cli // import "miniflux.app/cli" package cli // import "miniflux.app/cli"

View File

@ -3,10 +3,9 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package client implements a client library for the Miniflux REST API. Package client implements a client library for the Miniflux REST API.
Examples # Examples
This code snippet fetch the list of users: This code snippet fetch the list of users:
@ -30,6 +29,5 @@ This one discover subscriptions on a website:
return return
} }
fmt.Println(subscriptions) fmt.Println(subscriptions)
*/ */
package client // import "miniflux.app/client" package client // import "miniflux.app/client"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package config handles configuration management for the application. Package config handles configuration management for the application.
*/ */
package config // import "miniflux.app/config" package config // import "miniflux.app/config"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package crypto implements helpers related to cryptography. Package crypto implements helpers related to cryptography.
*/ */
package crypto // import "miniflux.app/crypto" package crypto // import "miniflux.app/crypto"

2
doc.go
View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Miniflux is a feed reader application. Miniflux is a feed reader application.
*/ */
package main // import "miniflux.app" package main // import "miniflux.app"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package errors handles localized errors. Package errors handles localized errors.
*/ */
package errors // import "miniflux.app/errors" package errors // import "miniflux.app/errors"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package fever implements Fever API endpoints. Package fever implements Fever API endpoints.
*/ */
package fever // import "miniflux.app/fever" package fever // import "miniflux.app/fever"

View File

@ -61,13 +61,13 @@ func (h *handler) serve(w http.ResponseWriter, r *http.Request) {
/* /*
A request with the groups argument will return two additional members: A request with the groups argument will return two additional members:
groups contains an array of group objects groups contains an array of group objects
feeds_groups contains an array of feeds_group objects feeds_groups contains an array of feeds_group objects
A group object has the following members: A group object has the following members:
id (positive integer) id (positive integer)
title (utf-8 string) title (utf-8 string)
The feeds_group object is documented under Feeds/Groups Relationships. The feeds_group object is documented under Feeds/Groups Relationships.
@ -76,7 +76,6 @@ an is_spark equal to 0.
The Sparks super group is not included in this response and is composed of all feeds with an The Sparks super group is not included in this response and is composed of all feeds with an
is_spark equal to 1. is_spark equal to 1.
*/ */
func (h *handler) handleGroups(w http.ResponseWriter, r *http.Request) { func (h *handler) handleGroups(w http.ResponseWriter, r *http.Request) {
userID := request.UserID(r) userID := request.UserID(r)
@ -107,18 +106,18 @@ func (h *handler) handleGroups(w http.ResponseWriter, r *http.Request) {
/* /*
A request with the feeds argument will return two additional members: A request with the feeds argument will return two additional members:
feeds contains an array of group objects feeds contains an array of group objects
feeds_groups contains an array of feeds_group objects feeds_groups contains an array of feeds_group objects
A feed object has the following members: A feed object has the following members:
id (positive integer) id (positive integer)
favicon_id (positive integer) favicon_id (positive integer)
title (utf-8 string) title (utf-8 string)
url (utf-8 string) url (utf-8 string)
site_url (utf-8 string) site_url (utf-8 string)
is_spark (boolean integer) is_spark (boolean integer)
last_updated_on_time (Unix timestamp/integer) last_updated_on_time (Unix timestamp/integer)
The feeds_group object is documented under Feeds/Groups Relationships. The feeds_group object is documented under Feeds/Groups Relationships.
@ -165,12 +164,12 @@ func (h *handler) handleFeeds(w http.ResponseWriter, r *http.Request) {
/* /*
A request with the favicons argument will return one additional member: A request with the favicons argument will return one additional member:
favicons contains an array of favicon objects favicons contains an array of favicon objects
A favicon object has the following members: A favicon object has the following members:
id (positive integer) id (positive integer)
data (base64 encoded image data; prefixed by image type) data (base64 encoded image data; prefixed by image type)
An example data value: An example data value:
@ -206,20 +205,20 @@ func (h *handler) handleFavicons(w http.ResponseWriter, r *http.Request) {
/* /*
A request with the items argument will return two additional members: A request with the items argument will return two additional members:
items contains an array of item objects items contains an array of item objects
total_items contains the total number of items stored in the database (added in API version 2) total_items contains the total number of items stored in the database (added in API version 2)
An item object has the following members: An item object has the following members:
id (positive integer) id (positive integer)
feed_id (positive integer) feed_id (positive integer)
title (utf-8 string) title (utf-8 string)
author (utf-8 string) author (utf-8 string)
html (utf-8 string) html (utf-8 string)
url (utf-8 string) url (utf-8 string)
is_saved (boolean integer) is_saved (boolean integer)
is_read (boolean integer) is_read (boolean integer)
created_on_time (Unix timestamp/integer) created_on_time (Unix timestamp/integer)
Most servers wont have enough memory allocated to PHP to dump all items at once. Most servers wont have enough memory allocated to PHP to dump all items at once.
Three optional arguments control determine the items included in the response. Three optional arguments control determine the items included in the response.
@ -232,7 +231,6 @@ Three optional arguments control determine the items included in the response.
Use the with_ids argument with a comma-separated list of item ids to request (a maximum of 50) specific items. Use the with_ids argument with a comma-separated list of item ids to request (a maximum of 50) specific items.
(added in API version 2) (added in API version 2)
*/ */
func (h *handler) handleItems(w http.ResponseWriter, r *http.Request) { func (h *handler) handleItems(w http.ResponseWriter, r *http.Request) {
var result itemsResponse var result itemsResponse
@ -327,7 +325,8 @@ The unread_item_ids and saved_item_ids arguments can be used to keep your local
with the remote Fever installation. with the remote Fever installation.
A request with the unread_item_ids argument will return one additional member: A request with the unread_item_ids argument will return one additional member:
unread_item_ids (string/comma-separated list of positive integers)
unread_item_ids (string/comma-separated list of positive integers)
*/ */
func (h *handler) handleUnreadItems(w http.ResponseWriter, r *http.Request) { func (h *handler) handleUnreadItems(w http.ResponseWriter, r *http.Request) {
userID := request.UserID(r) userID := request.UserID(r)
@ -384,9 +383,9 @@ func (h *handler) handleSavedItems(w http.ResponseWriter, r *http.Request) {
} }
/* /*
mark=item mark=item
as=? where ? is replaced with read, saved or unsaved as=? where ? is replaced with read, saved or unsaved
id=? where ? is replaced with the id of the item to modify id=? where ? is replaced with the id of the item to modify
*/ */
func (h *handler) handleWriteItems(w http.ResponseWriter, r *http.Request) { func (h *handler) handleWriteItems(w http.ResponseWriter, r *http.Request) {
userID := request.UserID(r) userID := request.UserID(r)
@ -448,10 +447,10 @@ func (h *handler) handleWriteItems(w http.ResponseWriter, r *http.Request) {
} }
/* /*
mark=feed mark=feed
as=read as=read
id=? where ? is replaced with the id of the feed or group to modify id=? where ? is replaced with the id of the feed or group to modify
before=? where ? is replaced with the Unix timestamp of the the local clients most recent items API request before=? where ? is replaced with the Unix timestamp of the the local clients most recent items API request
*/ */
func (h *handler) handleWriteFeeds(w http.ResponseWriter, r *http.Request) { func (h *handler) handleWriteFeeds(w http.ResponseWriter, r *http.Request) {
userID := request.UserID(r) userID := request.UserID(r)
@ -474,10 +473,10 @@ func (h *handler) handleWriteFeeds(w http.ResponseWriter, r *http.Request) {
} }
/* /*
mark=group mark=group
as=read as=read
id=? where ? is replaced with the id of the feed or group to modify id=? where ? is replaced with the id of the feed or group to modify
before=? where ? is replaced with the Unix timestamp of the the local clients most recent items API request before=? where ? is replaced with the Unix timestamp of the the local clients most recent items API request
*/ */
func (h *handler) handleWriteGroups(w http.ResponseWriter, r *http.Request) { func (h *handler) handleWriteGroups(w http.ResponseWriter, r *http.Request) {
userID := request.UserID(r) userID := request.UserID(r)
@ -510,9 +509,8 @@ func (h *handler) handleWriteGroups(w http.ResponseWriter, r *http.Request) {
/* /*
A feeds_group object has the following members: A feeds_group object has the following members:
group_id (positive integer) group_id (positive integer)
feed_ids (string/comma-separated list of positive integers) feed_ids (string/comma-separated list of positive integers)
*/ */
func (h *handler) buildFeedGroups(feeds model.Feeds) []feedsGroups { func (h *handler) buildFeedGroups(feeds model.Feeds) []feedsGroups {
feedsGroupedByCategory := make(map[int64][]string) feedsGroupedByCategory := make(map[int64][]string)

View File

@ -23,8 +23,8 @@ func (b *baseResponse) SetCommonValues() {
/* /*
The default response is a JSON object containing two members: The default response is a JSON object containing two members:
api_version contains the version of the API responding (positive integer) api_version contains the version of the API responding (positive integer)
auth whether the request was successfully authenticated (boolean integer) auth whether the request was successfully authenticated (boolean integer)
The API can also return XML by passing xml as the optional value of the api argument like so: The API can also return XML by passing xml as the optional value of the api argument like so:
@ -37,7 +37,6 @@ at least one additional member:
last_refreshed_on_time contains the time of the most recently refreshed (not updated) last_refreshed_on_time contains the time of the most recently refreshed (not updated)
feed (Unix timestamp/integer) feed (Unix timestamp/integer)
*/ */
func newBaseResponse() baseResponse { func newBaseResponse() baseResponse {
r := baseResponse{} r := baseResponse{}

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package googlereader implements Google Reader API endpoints. Package googlereader implements Google Reader API endpoints.
*/ */
package googlereader // import "miniflux.app/googlereader" package googlereader // import "miniflux.app/googlereader"

View File

@ -29,10 +29,9 @@ const (
) )
var ( var (
errInvalidCertificate = "Invalid SSL certificate (original error: %q)" errInvalidCertificate = "Invalid SSL certificate (original error: %q)"
errTemporaryNetworkOperation = "This website is temporarily unreachable (original error: %q)" errNetworkOperation = "This website is unreachable (original error: %q)"
errPermanentNetworkOperation = "This website is permanently unreachable (original error: %q)" errRequestTimeout = "Website unreachable, the request timed out after %d seconds"
errRequestTimeout = "Website unreachable, the request timed out after %d seconds"
) )
// Client builds and executes HTTP requests. // Client builds and executes HTTP requests.
@ -205,17 +204,11 @@ func (c *Client) executeRequest(request *http.Request) (*Response, error) {
case x509.CertificateInvalidError, x509.HostnameError: case x509.CertificateInvalidError, x509.HostnameError:
err = errors.NewLocalizedError(errInvalidCertificate, uerr.Err) err = errors.NewLocalizedError(errInvalidCertificate, uerr.Err)
case *net.OpError: case *net.OpError:
if uerr.Err.(*net.OpError).Temporary() { err = errors.NewLocalizedError(errNetworkOperation, uerr.Err)
err = errors.NewLocalizedError(errTemporaryNetworkOperation, uerr.Err)
} else {
err = errors.NewLocalizedError(errPermanentNetworkOperation, uerr.Err)
}
case net.Error: case net.Error:
nerr := uerr.Err.(net.Error) nerr := uerr.Err.(net.Error)
if nerr.Timeout() { if nerr.Timeout() {
err = errors.NewLocalizedError(errRequestTimeout, c.ClientTimeout) err = errors.NewLocalizedError(errRequestTimeout, c.ClientTimeout)
} else if nerr.Temporary() {
err = errors.NewLocalizedError(errTemporaryNetworkOperation, nerr)
} }
} }
} }

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package client provides an HTTP client builder. Package client provides an HTTP client builder.
*/ */
package client // import "miniflux.app/http/client" package client // import "miniflux.app/http/client"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package cookie provides functions to build cookies. Package cookie provides functions to build cookies.
*/ */
package cookie // import "miniflux.app/http/cookie" package cookie // import "miniflux.app/http/cookie"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package request contains helper functions to work with the HTTP request. Package request contains helper functions to work with the HTTP request.
*/ */
package request // import "miniflux.app/http/request" package request // import "miniflux.app/http/request"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package response contains everything related to HTTP responses. Package response contains everything related to HTTP responses.
*/ */
package response // import "miniflux.app/http/response" package response // import "miniflux.app/http/response"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package html contains HTML response functions. Package html contains HTML response functions.
*/ */
package html // import "miniflux.app/http/response/html" package html // import "miniflux.app/http/response/html"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package json contains JSON response functions. Package json contains JSON response functions.
*/ */
package json // import "miniflux.app/http/response/json" package json // import "miniflux.app/http/response/json"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package xml contains XML response functions. Package xml contains XML response functions.
*/ */
package xml // import "miniflux.app/http/response/xml" package xml // import "miniflux.app/http/response/xml"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package route contains helper functions to work with defined routes. Package route contains helper functions to work with defined routes.
*/ */
package route // import "miniflux.app/http/route" package route // import "miniflux.app/http/route"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package locale handles the internationalization of the application. Package locale handles the internationalization of the application.
*/ */
package locale // import "miniflux.app/locale" package locale // import "miniflux.app/locale"

View File

@ -395,8 +395,7 @@
"This feed is empty": "Dieses Abonnement ist leer", "This feed is empty": "Dieses Abonnement ist leer",
"This web page is empty": "Diese Webseite ist leer", "This web page is empty": "Diese Webseite ist leer",
"Invalid SSL certificate (original error: %q)": "Ungültiges SSL-Zertifikat (ursprünglicher Fehler: %q)", "Invalid SSL certificate (original error: %q)": "Ungültiges SSL-Zertifikat (ursprünglicher Fehler: %q)",
"This website is temporarily unreachable (original error: %q)": "Diese Webseite ist vorübergehend nicht erreichbar (ursprünglicher Fehler: %q)", "This website is unreachable (original error: %q)": "Diese Webseite ist nicht erreichbar (ursprünglicher Fehler: %q)",
"This website is permanently unreachable (original error: %q)": "Diese Webseite ist dauerhaft nicht erreichbar (ursprünglicher Fehler: %q)",
"Website unreachable, the request timed out after %d seconds": "Webseite nicht erreichbar, die Anfrage endete nach %d Sekunden", "Website unreachable, the request timed out after %d seconds": "Webseite nicht erreichbar, die Anfrage endete nach %d Sekunden",
"You are not authorized to access this resource (invalid username/password)": "Sie sind nicht berechtigt, auf diese Ressource zuzugreifen (Benutzername/Passwort ungültig)", "You are not authorized to access this resource (invalid username/password)": "Sie sind nicht berechtigt, auf diese Ressource zuzugreifen (Benutzername/Passwort ungültig)",
"Unable to fetch this resource (Status Code = %d)": "Ressource konnte nicht abgerufen werden (code=%d)", "Unable to fetch this resource (Status Code = %d)": "Ressource konnte nicht abgerufen werden (code=%d)",

View File

@ -395,8 +395,7 @@
"This feed is empty": "Cet abonnement est vide", "This feed is empty": "Cet abonnement est vide",
"This web page is empty": "Cette page web est vide", "This web page is empty": "Cette page web est vide",
"Invalid SSL certificate (original error: %q)": "Certificat SSL invalide (erreur originale : %q)", "Invalid SSL certificate (original error: %q)": "Certificat SSL invalide (erreur originale : %q)",
"This website is temporarily unreachable (original error: %q)": "Ce site web est temporairement injoignable (erreur originale : %q)", "This website is unreachable (original error: %q)": "Ce site web n'est pas joignable (erreur originale : %q)",
"This website is permanently unreachable (original error: %q)": "Ce site web n'est pas joignable de façon permanente (erreur originale : %q)",
"Website unreachable, the request timed out after %d seconds": "Site web injoignable, la requête à échouée après %d secondes", "Website unreachable, the request timed out after %d seconds": "Site web injoignable, la requête à échouée après %d secondes",
"You are not authorized to access this resource (invalid username/password)": "Vous n'êtes pas autorisé à accéder à cette ressource (nom d'utilisateur / mot de passe incorrect)", "You are not authorized to access this resource (invalid username/password)": "Vous n'êtes pas autorisé à accéder à cette ressource (nom d'utilisateur / mot de passe incorrect)",
"Unable to fetch this resource (Status Code = %d)": "Impossible de récupérer cette ressource (code=%d)", "Unable to fetch this resource (Status Code = %d)": "Impossible de récupérer cette ressource (code=%d)",

View File

@ -396,7 +396,6 @@
"Category not found for this user": "Categorie niet gevonden voor deze gebruiker", "Category not found for this user": "Categorie niet gevonden voor deze gebruiker",
"This web page is empty": "Deze webpagina is leeg", "This web page is empty": "Deze webpagina is leeg",
"Invalid SSL certificate (original error: %q)": "Ongeldig SSL-certificaat (originele error: %q)", "Invalid SSL certificate (original error: %q)": "Ongeldig SSL-certificaat (originele error: %q)",
"This website is temporarily unreachable (original error: %q)": "Deze website is tijdelijk onbereikbaar (originele error: %q)", "This website is unreachable (original error: %q)": "Deze website is onbereikbaar (originele error: %q)",
"This website is permanently unreachable (original error: %q)": "Deze website is permanent onbereikbaar (originele error: %q)",
"Website unreachable, the request timed out after %d seconds": "Website onbereikbaar, de request gaf een timeout na %d seconden" "Website unreachable, the request timed out after %d seconds": "Website onbereikbaar, de request gaf een timeout na %d seconden"
} }

View File

@ -404,7 +404,6 @@
"This feed is empty": "Ten kanał jest pusty", "This feed is empty": "Ten kanał jest pusty",
"This web page is empty": "Ta strona jest pusta", "This web page is empty": "Ta strona jest pusta",
"Invalid SSL certificate (original error: %q)": "Certyfikat SSL jest nieprawidłowy (błąd: %q)", "Invalid SSL certificate (original error: %q)": "Certyfikat SSL jest nieprawidłowy (błąd: %q)",
"This website is temporarily unreachable (original error: %q)": "Ta strona jest tymczasowo niedostępna (błąd: %q)", "This website is unreachable (original error: %q)": "Ta strona jest niedostępna (błąd: %q)",
"This website is permanently unreachable (original error: %q)": "Ta strona jest niedostępna (błąd: %q)",
"Website unreachable, the request timed out after %d seconds": "Strona internetowa nieosiągalna, żądanie wygasło po %d sekundach" "Website unreachable, the request timed out after %d seconds": "Strona internetowa nieosiągalna, żądanie wygasło po %d sekundach"
} }

View File

@ -389,7 +389,6 @@
"This feed is empty": "该源是空的", "This feed is empty": "该源是空的",
"This web page is empty": "该网页是空的", "This web page is empty": "该网页是空的",
"Invalid SSL certificate (original error: %q)": "无效的 SSL 证书 (原始错误: %q)", "Invalid SSL certificate (original error: %q)": "无效的 SSL 证书 (原始错误: %q)",
"This website is temporarily unreachable (original error: %q)": "该网站暂时不可达 (原始错误: %q)", "This website is unreachable (original error: %q)": "该网站永久不可达 (原始错误: %q)",
"This website is permanently unreachable (original error: %q)": "该网站永久不可达 (原始错误: %q)",
"Website unreachable, the request timed out after %d seconds": "网站不可达, 请求已在 %d 秒后超时" "Website unreachable, the request timed out after %d seconds": "网站不可达, 请求已在 %d 秒后超时"
} }

View File

@ -397,7 +397,6 @@
"This feed is empty": "該Feed是空的", "This feed is empty": "該Feed是空的",
"This web page is empty": "該網頁是空的", "This web page is empty": "該網頁是空的",
"Invalid SSL certificate (original error: %q)": "無效的 SSL 憑證 (錯誤: %q)", "Invalid SSL certificate (original error: %q)": "無效的 SSL 憑證 (錯誤: %q)",
"This website is temporarily unreachable (original error: %q)": "該網站暫時無法訪問 (原始錯誤: %q)", "This website is unreachable (original error: %q)": "該網站永久無法訪問(原始錯誤: %q)",
"This website is permanently unreachable (original error: %q)": "該網站永久無法訪問(原始錯誤: %q)",
"Website unreachable, the request timed out after %d seconds": "網站無法訪問, 請求已在 %d 秒後超時" "Website unreachable, the request timed out after %d seconds": "網站無法訪問, 請求已在 %d 秒後超時"
} }

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package logger handles application log messages with different levels. Package logger handles application log messages with different levels.
*/ */
package logger // import "miniflux.app/logger" package logger // import "miniflux.app/logger"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package model contains all data structures used by the application. Package model contains all data structures used by the application.
*/ */
package model // import "miniflux.app/model" package model // import "miniflux.app/model"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package oauth2 abstracts different OAuth2 providers. Package oauth2 abstracts different OAuth2 providers.
*/ */
package oauth2 // import "miniflux.app/oauth2" package oauth2 // import "miniflux.app/oauth2"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package atom provides an Atom feed parser. Package atom provides an Atom feed parser.
*/ */
package atom // import "miniflux.app/reader/atom" package atom // import "miniflux.app/reader/atom"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package browser handles website crawling. Package browser handles website crawling.
*/ */
package browser // import "miniflux.app/reader/browser" package browser // import "miniflux.app/reader/browser"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package date provides a feed date parser. Package date provides a feed date parser.
*/ */
package date // import "miniflux.app/reader/date" package date // import "miniflux.app/reader/date"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package reader implements everything related to feed parsing. Package reader implements everything related to feed parsing.
*/ */
package reader // import "miniflux.app/reader" package reader // import "miniflux.app/reader"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package encoding handles workarounds to deal with encoding edge cases found into feeds. Package encoding handles workarounds to deal with encoding edge cases found into feeds.
*/ */
package encoding // import "miniflux.app/reader/encoding" package encoding // import "miniflux.app/reader/encoding"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package icon provides all the logic to download website icons. Package icon provides all the logic to download website icons.
*/ */
package icon // import "miniflux.app/reader/icon" package icon // import "miniflux.app/reader/icon"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package json provides a JSON feed parser. Package json provides a JSON feed parser.
*/ */
package json // import "miniflux.app/reader/json" package json // import "miniflux.app/reader/json"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package opml provides an OPML parser and writer. Package opml provides an OPML parser and writer.
*/ */
package opml // import "miniflux.app/reader/opml" package opml // import "miniflux.app/reader/opml"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package parser provides a generic feed parser that abstract all different formats. Package parser provides a generic feed parser that abstract all different formats.
*/ */
package parser // import "miniflux.app/reader/parser" package parser // import "miniflux.app/reader/parser"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package processor applies rules and sanitize content for feed entries. Package processor applies rules and sanitize content for feed entries.
*/ */
package processor // import "miniflux.app/reader/processor" package processor // import "miniflux.app/reader/processor"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package rdf provides a RDF feed parser. Package rdf provides a RDF feed parser.
*/ */
package rdf // import "miniflux.app/reader/rdf" package rdf // import "miniflux.app/reader/rdf"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package readability implements a web page scraper that returns only relevant content. Package readability implements a web page scraper that returns only relevant content.
*/ */
package readability // import "miniflux.app/reader/readability" package readability // import "miniflux.app/reader/readability"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package rewrite provides functions to manipulate feed contents. Package rewrite provides functions to manipulate feed contents.
*/ */
package rewrite // import "miniflux.app/reader/rewrite" package rewrite // import "miniflux.app/reader/rewrite"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package rss provides a RSS feed parser. Package rss provides a RSS feed parser.
*/ */
package rss // import "miniflux.app/reader/rss" package rss // import "miniflux.app/reader/rss"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package sanitizer implements a HTML sanitizer that removes unsafe elements. Package sanitizer implements a HTML sanitizer that removes unsafe elements.
*/ */
package sanitizer // import "miniflux.app/reader/sanitizer" package sanitizer // import "miniflux.app/reader/sanitizer"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package scraper implements a web page crawler. Package scraper implements a web page crawler.
*/ */
package scraper // import "miniflux.app/reader/scraper" package scraper // import "miniflux.app/reader/scraper"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package subscription implements the logic to find subscriptions on a website. Package subscription implements the logic to find subscriptions on a website.
*/ */
package subscription // import "miniflux.app/reader/subscription" package subscription // import "miniflux.app/reader/subscription"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package httpd implements the HTTP service. Package httpd implements the HTTP service.
*/ */
package httpd // import "miniflux.app/service/httpd" package httpd // import "miniflux.app/service/httpd"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package scheduler implements the scheduler service. Package scheduler implements the scheduler service.
*/ */
package scheduler // import "miniflux.app/service/scheduler" package scheduler // import "miniflux.app/service/scheduler"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package storage implements a set of functions to interact with the database. Package storage implements a set of functions to interact with the database.
*/ */
package storage // import "miniflux.app/storage" package storage // import "miniflux.app/storage"

View File

@ -2,6 +2,7 @@
// Use of this source code is governed by the Apache 2.0 // Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
//go:build integration
// +build integration // +build integration
package tests package tests

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package tests contains API integration tests. Package tests contains API integration tests.
*/ */
package tests // import "miniflux.app/tests" package tests // import "miniflux.app/tests"

View File

@ -2,6 +2,7 @@
// Use of this source code is governed by the Apache 2.0 // Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
//go:build integration
// +build integration // +build integration
package tests package tests

View File

@ -2,6 +2,7 @@
// Use of this source code is governed by the Apache 2.0 // Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
//go:build integration
// +build integration // +build integration
package tests package tests

View File

@ -2,6 +2,7 @@
// Use of this source code is governed by the Apache 2.0 // Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
//go:build integration
// +build integration // +build integration
package tests package tests

View File

@ -2,6 +2,7 @@
// Use of this source code is governed by the Apache 2.0 // Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
//go:build integration
// +build integration // +build integration
package tests package tests

View File

@ -2,6 +2,7 @@
// Use of this source code is governed by the Apache 2.0 // Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
//go:build integration
// +build integration // +build integration
package tests package tests

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package timer implements utility functions to measure the execution time of a block of code. Package timer implements utility functions to measure the execution time of a block of code.
*/ */
package timer // import "miniflux.app/timer" package timer // import "miniflux.app/timer"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package timezone contains helper functions to work with timezones. Package timezone contains helper functions to work with timezones.
*/ */
package timezone // import "miniflux.app/timezone" package timezone // import "miniflux.app/timezone"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package ui implements handlers to render to user interface. Package ui implements handlers to render to user interface.
*/ */
package ui // import "miniflux.app/ui" package ui // import "miniflux.app/ui"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package form handles HTML form validation and serialization. Package form handles HTML form validation and serialization.
*/ */
package form // import "miniflux.app/ui/form" package form // import "miniflux.app/ui/form"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package session provides helper functions to work with the user session. Package session provides helper functions to work with the user session.
*/ */
package session // import "miniflux.app/ui/session" package session // import "miniflux.app/ui/session"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package static contains assets for the user interface. Package static contains assets for the user interface.
*/ */
package static // import "miniflux.app/ui/static" package static // import "miniflux.app/ui/static"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package view handles template parameters. Package view handles template parameters.
*/ */
package view // import "miniflux.app/ui/view" package view // import "miniflux.app/ui/view"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package url implements a set of utility functions to parse URL. Package url implements a set of utility functions to parse URL.
*/ */
package url // import "miniflux.app/url" package url // import "miniflux.app/url"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package version contains application and build information. Package version contains application and build information.
*/ */
package version // import "miniflux.app/version" package version // import "miniflux.app/version"

View File

@ -3,8 +3,6 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
/* /*
Package worker implements the background workers. Package worker implements the background workers.
*/ */
package worker // import "miniflux.app/worker" package worker // import "miniflux.app/worker"