1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-09-15 18:57:04 +00:00

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

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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