Skip to content

Commit

Permalink
Fixes #141
Browse files Browse the repository at this point in the history
  • Loading branch information
bbaliguet committed May 1, 2015
1 parent caf65b2 commit b522a84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion JsFormat.sublime-settings
Expand Up @@ -17,5 +17,5 @@
// jsformat options
"format_on_save": false,
"jsbeautifyrc_files": false,
"ignore_sublime_settings": true,
"ignore_sublime_settings": true
}
2 changes: 1 addition & 1 deletion js_formatter.py
Expand Up @@ -78,7 +78,7 @@ def run(self, edit):

if file_name is not None and s.get("ignore_sublime_settings"):
_, ext = os.path.splitext(file_name)
if ext in {".sublime-settings", ".sublime-project"}:
if ext in [".sublime-settings", ".sublime-project"]:
return

# settings
Expand Down

0 comments on commit b522a84

Please sign in to comment.