Add support for .editorconfig in Web IDE
Developers collaborating on projects follow certain coding standards styles to maintain consistent levels of readability and format. These standards are usually provided to developers through configuration files that the developer's editor might read and apply. When working in the Web IDE, even if a project has configured this type of file, those settings can't be enforced. The leader in standards for this is EditorConfig which providers a file format for defining coding styles. This change adds support for reading .editorconfig files in the Web IDE and applying configuration settings automatically.
Showing
... | ... | @@ -79,6 +79,7 @@ |
"diff": "^3.4.0", | ||
"document-register-element": "1.14.3", | ||
"dropzone": "^4.2.0", | ||
"editorconfig": "^0.15.3", | ||
"emoji-regex": "^7.0.3", | ||
"emoji-unicode-version": "^0.2.1", | ||
"exports-loader": "^0.7.0", | ||
... | ... | @@ -103,6 +104,7 @@ |
"marked": "^0.3.12", | ||
"mermaid": "^8.5.1", | ||
"mersenne-twister": "1.1.0", | ||
"minimatch": "^3.0.4", | ||
"mitt": "^1.2.0", | ||
"monaco-editor": "^0.18.1", | ||
"monaco-editor-webpack-plugin": "^1.7.0", | ||
... | ... |
This diff is collapsed.
Please register or sign in to comment