build: add package comments to silence revive linter
This commit is contained in:
parent
02b7613104
commit
555def2da7
132 changed files with 164 additions and 68 deletions
|
@ -1,15 +1,13 @@
|
|||
/*
|
||||
Translate file names for usage on restrictive storage systems
|
||||
|
||||
The restricted set of characters are mapped to a unicode equivalent version
|
||||
(most to their FULLWIDTH variant) to increase compatibility with other
|
||||
storage systems.
|
||||
See: http://unicode-search.net/unicode-namesearch.pl?term=FULLWIDTH
|
||||
|
||||
Encoders will also quote reserved characters to differentiate between
|
||||
the raw and encoded forms.
|
||||
*/
|
||||
|
||||
// Package encoder provides functionality to translate file names
|
||||
// for usage on restrictive storage systems.
|
||||
//
|
||||
// The restricted set of characters are mapped to a unicode equivalent version
|
||||
// (most to their FULLWIDTH variant) to increase compatibility with other
|
||||
// storage systems.
|
||||
// See: http://unicode-search.net/unicode-namesearch.pl?term=FULLWIDTH
|
||||
//
|
||||
// Encoders will also quote reserved characters to differentiate between
|
||||
// the raw and encoded forms.
|
||||
package encoder
|
||||
|
||||
import (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue