mirror of
https://github.com/torvalds/linux.git
synced 2025-08-15 06:01:56 +02:00
gitignore: allow .pylintrc to be tracked
The .pylintrc file was introduced by commit02df8e3b33
("docs: add a .pylintrc file with sys path for docs scripts") to provide Python path configuration for documentation scripts. However, the generic ".*" rule in .gitignore causes this tracked file to be ignored, leading to warnings during kernel builds. Add !.pylintrc to the exception list to explicitly allow this configuration file to be tracked by git, consistent with other development tool configuration files like .clang-format and .rustfmt.toml. This resolves the build warning: .pylintrc: warning: ignored by one of the .gitignore files Fixes:02df8e3b33
("docs: add a .pylintrc file with sys path for docs scripts") Signed-off-by: WangYuli <wangyuli@uniontech.com> Reviewed-by: Miguel Ojeda <ojeda@kernel.org> Reviewed-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> Signed-off-by: Jonathan Corbet <corbet@lwn.net> Link: https://lore.kernel.org/r/1A357750FF71847E+20250623071933.311947-1-wangyuli@uniontech.com
This commit is contained in:
parent
1ce50d4e06
commit
38d573a624
1 changed files with 1 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -114,6 +114,7 @@ modules.order
|
|||
!.gitignore
|
||||
!.kunitconfig
|
||||
!.mailmap
|
||||
!.pylintrc
|
||||
!.rustfmt.toml
|
||||
|
||||
#
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue