You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the user uses a bare dos device name such as aux, windows will convert it to \\.\aux (the aux device). This may be surprising. Clippy could warn the user and suggest they explicitly use \\.\aux if that was intended. Using .\aux could also suppress this lint.
What it does
If the user uses a bare dos device name such as
aux
, windows will convert it to\\.\aux
(the aux device). This may be surprising. Clippy could warn the user and suggest they explicitly use\\.\aux
if that was intended. Using.\aux
could also suppress this lint.The DOS device names are (case insensitive):
Lint Name
bare_dos_device_name
Category
suspicious
Advantage
Avoids unexpected and surprising path transformations.
Drawbacks
This is platform specific behaviour.
Example
Could be written as:
Or
The text was updated successfully, but these errors were encountered: