ljoonal/CVR-Plugins
Archived
1
Fork 0
This repository has been archived on 2023-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
CVR-Plugins/.editorconfig
ljoonal 7e1af17232
BepInEx 6 upgrade
- Switched to using BepInEx 6 nuget packages, including analyzers
- Fixed analyzer warnings
- Made MSBuild tooling better
2022-08-01 00:10:29 +03:00

25 lines
1 KiB
INI

root = true
[*]
end_of_line = lf
charset = utf-8
insert_final_newline = true
[*.{cs,csproj,props}]
indent_style = tab
# Prefer actual type checks over null checks due to mod types not being too trustworthy
csharp_style_prefer_null_check_over_type_check = false
# Catching most generic errors as possible is kinda required for good modding error handling
dotnet_diagnostic.CA1031.severity = none
# Instead of machine generated GUIDs, using human readable reverse domain notation
dotnet_diagnostic.CA2243.severity = none
# It should be fine to drop the references to disposable harmony handles if we never are going use them again
dotnet_code_quality.CA2000.excluded_symbol_names = Harmony
# No, too verbose to always need to define getters and setters for everything
dotnet_diagnostic.CA1051.severity = none
# Harmony patches use underscores in parameter names
dotnet_diagnostic.CA1707.severity = none
# No need for whatever CLS compliant is
dotnet_diagnostic.CA1014.severity = none
# BepInEx instantiates our plugins
dotnet_diagnostic.CA1812.severity = none