Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmenadiel <amenadiel@gmail.com>2016-08-16 21:14:49 +0300
committerAmenadiel <amenadiel@gmail.com>2016-08-16 21:14:49 +0300
commitfc483cc7f0af3005e23b739a553907e02ba7bb95 (patch)
tree38136c159611029bd31fb4de69d5a270c09fd799 /.jsbeautifyrc
parentffeda37ef3765bbdaf5a719bb122706ee2529aa5 (diff)
codemirror
Diffstat (limited to '.jsbeautifyrc')
-rw-r--r--.jsbeautifyrc56
1 files changed, 56 insertions, 0 deletions
diff --git a/.jsbeautifyrc b/.jsbeautifyrc
new file mode 100644
index 00000000..3ff42934
--- /dev/null
+++ b/.jsbeautifyrc
@@ -0,0 +1,56 @@
+{
+ // The plugin looks for a .jsbeautifyrc file in the same directory as the
+ // source file you're prettifying (or any directory above if it doesn't exist,
+ // or in your home folder if everything else fails) and uses those options
+ // along the default ones.
+
+ // Details: https://github.com/victorporof/Sublime-HTMLPrettify#using-your-own-jsbeautifyrc-options
+ // Documentation: https://github.com/einars/js-beautify/
+
+ "html": {
+ "allowed_file_extensions": ["htm", "html", "xhtml", "shtml", "xml", "svg", "hbs", "twig"],
+ "brace_style": "collapse",
+ "end_with_newline": false, // End output with newline
+ "indent_char": " ", // Indentation character
+ "indent_handlebars": false, // e.g. {{#foo}}, {{/foo}}
+ "indent_inner_html": true, // Indent <head> and <body> sections
+ "indent_scripts": "keep", // [keep|separate|normal]
+ "indent_size": 4, // Indentation size
+ "max_preserve_newlines": 1, // Maximum number of line breaks to be preserved in one chunk (0 disables)
+ "preserve_newlines": true, // Whether existing line breaks before elements should be preserved (only works before elements, not inside tags or for text)
+ "unformatted": ["a", "span", "img", "code", "pre", "sub", "sup", "em",
+ "strong", "b", "i", "u", "strike", "big", "small", "pre", "h1", "h2", "h3",
+ "h4", "h5", "h6"
+ ], // List of tags that should not be reformatted
+ "wrap_line_length": 0 // Lines should wrap at next opportunity after this number of characters (0 disables)
+ },
+ "css": {
+ "allowed_file_extensions": ["css", "scss", "sass", "less"],
+ "end_with_newline": false, // End output with newline
+ "indent_char": " ", // Indentation character
+ "indent_size": 4, // Indentation size
+ "newline_between_rules": true, // Add a new line after every css rule
+ "selector_separator": " ",
+ "selector_separator_newline": true, // Separate selectors with newline or not (e.g. "a,\nbr" or "a, br"),
+ "indent_with_tabs": true
+ },
+ "js": {
+ "indent_size": 4,
+ "indent_char": " ",
+ "indent_level": 0,
+ "indent_with_tabs": true,
+ "preserve_newlines": true,
+ "max_preserve_newlines": 3,
+ "jslint_happy": true,
+ "space_after_anon_function": false,
+ "brace_style": "collapse",
+ "keep_array_indentation": false,
+ "keep_function_indentation": false,
+ "space_before_conditional": true,
+ "break_chained_methods": false,
+ "eval_code": false,
+ "unescape_strings": false,
+ "wrap_line_length": 180
+ }
+
+}