You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by vl...@apache.org on 2019/08/02 14:08:29 UTC

[jmeter] branch master updated: Add .editorconfig file for common editor settings

This is an automated email from the ASF dual-hosted git repository.

vladimirsitnikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git


The following commit(s) were added to refs/heads/master by this push:
     new 41bad20  Add .editorconfig file for common editor settings
41bad20 is described below

commit 41bad20e9d495240e140da6cbdbf5d9e2c8d3123
Author: Vladimir Sitnikov <si...@gmail.com>
AuthorDate: Fri Aug 2 14:40:23 2019 +0300

    Add .editorconfig file for common editor settings
---
 .editorconfig | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..5d98a0b
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,19 @@
+root = true
+
+[*]
+trim_trailing_whitespace = true
+insert_final_newline = true
+charset = utf-8
+indent_style = space
+
+[{*cp1252.txt,*cp1252.xml}]
+charset = latin1
+
+[{*.sh,gradlew}]
+end_of_line = lf
+
+[{*.bat,*.cmd}]
+end_of_line = crlf
+
+[{*.kts,*.kt}]
+ij_kotlin_code_style_defaults = KOTLIN_OFFICIAL