All Projects → RehanSaeed → Editorconfig

RehanSaeed / Editorconfig

Licence: mit
A very generic .editorconfig file supporting .NET, C#, VB and web technologies.

Programming Languages

csharp
926 projects

Projects that are alternatives of or similar to Editorconfig

FFmpeg
Unofficial FFmpeg with added custom native Visual Studio project build tools. FFmpeg: A complete, cross-platform solution to record, convert and stream audio and video.
Stars: ✭ 479 (+53.53%)
Mutual labels:  visual-studio
Boomerang
Boomerang Decompiler - Fighting the code-rot :)
Stars: ✭ 265 (-15.06%)
Mutual labels:  visual-studio
Vscode Yaml
YAML support for VS Code with built-in kubernetes syntax support
Stars: ✭ 293 (-6.09%)
Mutual labels:  visual-studio
OptionsSample
A Visual Studio extension sample
Stars: ✭ 14 (-95.51%)
Mutual labels:  visual-studio
Dotnet Db Samples
.NET code samples for Oracle database developers
Stars: ✭ 260 (-16.67%)
Mutual labels:  visual-studio
Structlayout
Visual Studio Extension for C++ struct memory layout visualization
Stars: ✭ 270 (-13.46%)
Mutual labels:  visual-studio
TextTemplatingCore
T4 Text Templating with .NET Core
Stars: ✭ 24 (-92.31%)
Mutual labels:  visual-studio
Alturos.yolo
C# Yolo Darknet Wrapper (real-time object detection)
Stars: ✭ 308 (-1.28%)
Mutual labels:  visual-studio
Mac Setup
🛠️ Front end web development setup for macOS.
Stars: ✭ 265 (-15.06%)
Mutual labels:  visual-studio
S25client
Return To The Roots (Settlers II(R) Clone)
Stars: ✭ 288 (-7.69%)
Mutual labels:  visual-studio
Urde
Data interchange and engine re-implementation for games by Retro Studios | Mirror
Stars: ✭ 253 (-18.91%)
Mutual labels:  visual-studio
Vs Mef
Managed Extensibility Framework (MEF) implementation used by Visual Studio
Stars: ✭ 258 (-17.31%)
Mutual labels:  visual-studio
Artoolkitx
artoolkitX
Stars: ✭ 272 (-12.82%)
Mutual labels:  visual-studio
PronamaChanIde2019
Pronama-chan IDE for Visual Studio 2019/2022
Stars: ✭ 14 (-95.51%)
Mutual labels:  visual-studio
Vsvim
Vim Emulator Plugin for Visual Studio 2015+
Stars: ✭ 3,232 (+935.9%)
Mutual labels:  visual-studio
VS.DiffAllFiles
Visual Studio Extension to make comparing files before and after committing them to Git and TFS faster and easier.
Stars: ✭ 26 (-91.67%)
Mutual labels:  visual-studio
Visualplus
🎨 The VisualPlus Framework (VPF) for WinForms allows you to rapidly deploy professional .NET applications with customizable components and controls.
Stars: ✭ 268 (-14.1%)
Mutual labels:  visual-studio
Archive Visualfsharppowertools
Power commands for F# in Visual Studio
Stars: ✭ 311 (-0.32%)
Mutual labels:  visual-studio
List Of Testing Tools And Frameworks For .net
✅ List of Automated Testing (TDD/BDD/ATDD/SBE) Tools and Frameworks for .NET
Stars: ✭ 303 (-2.88%)
Mutual labels:  visual-studio
Efifs
EFI FileSystem drivers
Stars: ✭ 272 (-12.82%)
Mutual labels:  visual-studio

.editorconfig Banner

A very generic .editorconfig file supporting the following file types:

  • C# - .cs, .csx, .cake
  • Visual Basic - .vb, vbx
  • Script - .sh, .ps1, .psm1, .bat, .cmd
  • XML - .xml, .config, .props, .targets, .nuspec, .resx, .ruleset
  • JSON - .json, .json5
  • YAML - .yml, .yaml
  • HTML - .htm, .html
  • JavaScript - .js, .jsm, .ts, .tsx, .vue
  • CSS - .css, .sass, .scss, .less
  • SVG - .svg
  • Markdown - .md
  • Visual Studio - .sln, .csproj, .vbproj, .vcxproj, .vcxproj.filters, .proj, .projitems, .shproj
  • Makefile

.NET Code Style

Extensive code style settings for C# and VB.NET have been defined that require the latest C# features to be used. All C# related code styles are consistent with StyleCop's default styles, with the exception of the file header definition, which has been changed to a more modern format. All .NET naming conventions are consistent with the .NET Framework Design Guideline's Naming Guidelines.

What is .editorconfig?

EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs. The EditorConfig project consists of a file format for defining coding styles and a collection of text editor plugins that enable editors to read the file format and adhere to defined styles. EditorConfig files are easily readable and they work nicely with version control systems. Find out more at editorconfig.org and the Visual Studio Docs.

How do I use It?

All you have to do is drop it into the root of your project. Then any time you open a file in Visual Studio, the .editorconfig file settings will be used to help format the document and also raise warnings if your code style and formatting does not conform. For Visual Studio Code, you can install the EditorConfig for VS Code extension to get support.

How can I get it?

Download the .editorconfig file in this repository or you can install the .NET Boxed templates and use the dotnet new CLI to create a new .editorconfig file in you current directory like so:

dotnet new --install Boxed.Templates
dotnet new editorconfig
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].