-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rule.exported: add feature to disable checking on const,method,functi…
…on, variable (#1047) Co-authored-by: chavacava <salvadorcavadini+github@gmail.com>
- Loading branch information
1 parent
ca2a32b
commit ff7b0ad
Showing
4 changed files
with
136 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Package golint comment | ||
package golint | ||
|
||
|
||
// path separator defined by os.Separator. | ||
const FilePath = "xyz" | ||
|
||
|
||
// Rewrite string to remove non-standard path characters | ||
func UnicodeSanitize(s string) string {} | ||
|
||
|
||
// Tags returns a slice of tags. The order is the original tag order unless it | ||
// was changed. | ||
func (t *Tags) Keys() []string {} | ||
|
||
// A value which may be passed to the which parameter for Getitimer and | ||
type ItimerWhich int | ||
|
||
|
||
/* | ||
// PropertyBag | ||
*/ | ||
// Rectangle An area within an image. | ||
type Rectangle struct {} |