diff options
author | Valentin Popov <valentin@popov.link> | 2025-02-04 20:48:15 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2025-02-04 21:07:06 +0300 |
commit | 78011ac0835edc09fafde459a1b0cee67eae25e4 (patch) | |
tree | cceb5453caa52ee0e7118b7fe691950bf04d53e8 /TextCleaner.sublime-settings | |
parent | fba519e9b28c0409aba9f86a98d143d166303f3c (diff) | |
download | sublime-text-cleaner-78011ac0835edc09fafde459a1b0cee67eae25e4.tar.xz sublime-text-cleaner-78011ac0835edc09fafde459a1b0cee67eae25e4.zip |
Initial Sublime Text's plugin
Diffstat (limited to 'TextCleaner.sublime-settings')
-rw-r--r-- | TextCleaner.sublime-settings | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/TextCleaner.sublime-settings b/TextCleaner.sublime-settings new file mode 100644 index 0000000..9a16e38 --- /dev/null +++ b/TextCleaner.sublime-settings @@ -0,0 +1,22 @@ +{ + // Convert tabs to spaces. + "expand_tabs": true, + + // Replace invisible characters with a space. + "replace_invisible_chars": true, + + // Replace smart quotes, apostrophes, and guillemets with ASCII quotes. + "replace_fancy_quotes": true, + + // Remove extra whitespace at the start and end of each line. + "trim_line_whitespace": true, + + // Replace multiple spaces with a single space. + "replace_multiple_spaces": true, + + // Remove duplicate empty lines. + "remove_duplicate_empty_lines": true, + + // Remove empty lines after opening brackets and before closing brackets. + "remove_empty_lines_around_brackets": true +}
\ No newline at end of file |