manualpathconcat

package
v0.89.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 11, 2026 License: MIT Imports: 10 Imported by: 0

Documentation

Overview

Package manualpathconcat implements a Go analysis linter that flags string concatenation using a literal "/" separator to build filesystem paths (e.g. dir + "/" + file), which should use filepath.Join (or path.Join for slash-separated paths) instead.

Manual "/" concatenation is error-prone: it can produce double slashes when an operand already ends with a separator, it skips the Clean-style normalization that filepath.Join performs, and it hard-codes the forward slash separator instead of the OS-specific one.

Index

Constants

This section is empty.

Variables

View Source
var Analyzer = analyzerutil.New(linterName, `reports manual "/" separator string concatenation used to build paths (e.g. dir + "/" + file) that should use filepath.Join or path.Join`, run)

Analyzer is the manual-path-concat analysis pass.

Functions

This section is empty.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL