Beispiel #1
0
 def additional_cli_args(self):
     return get_setting(self.view, 'additional_cli_args', {})
Beispiel #2
0
 def max_file_size_limit(self):
     return int(get_setting(self.view, 'max_file_size_limit', -1))
Beispiel #3
0
 def allow_inline_formatting(self):
     return get_setting(self.view, 'allow_inline_formatting', False)
Beispiel #4
0
 def disable_tab_width_auto_detection(self):
     return get_setting(self.view, 'disable_tab_width_auto_detection',
                        False)
Beispiel #5
0
 def get_auto_format_on_save_requires_prettier_config(view):
     return bool(
         get_setting(view, 'auto_format_on_save_requires_prettier_config',
                     False))
Beispiel #6
0
 def allow_inline_formatting(self):
     return get_setting(self.view, 'allow_inline_formatting', False)
Beispiel #7
0
 def get_auto_format_on_save_requires_prettier_config(view):
     return bool(get_setting(view, 'auto_format_on_save_requires_prettier_config', False))
Beispiel #8
0
 def get_auto_format_on_save_excludes(view):
     return get_setting(view, 'auto_format_on_save_excludes', [])
Beispiel #9
0
 def get_auto_format_on_save_excludes(view):
     return get_setting(view, 'auto_format_on_save_excludes', [])
Beispiel #10
0
 def get_custom_file_extensions(view):
     return get_setting(view, 'custom_file_extensions', [])
Beispiel #11
0
 def get_auto_format_on_save(view):
     return bool(get_setting(view, 'auto_format_on_save', False))
Beispiel #12
0
 def max_file_size_limit(self):
     return int(get_setting(self.view, 'max_file_size_limit', -1))
Beispiel #13
0
 def additional_cli_args(self):
     return get_setting(self.view, 'additional_cli_args', {})
Beispiel #14
0
 def disable_prettier_cursor_offset(self):
     return get_setting(self.view, 'disable_prettier_cursor_offset', False)
Beispiel #15
0
 def get_additional_cli_args(view):
     return dict(get_setting(view, 'additional_cli_args', {}))
Beispiel #16
0
 def get_auto_format_on_save(view):
     return bool(get_setting(view, 'auto_format_on_save', False))
Beispiel #17
0
 def node_path(self):
     return get_setting(self.view, 'node_path')
Beispiel #18
0
 def get_custom_file_extensions(view):
     return get_setting(view, 'custom_file_extensions', [])
Beispiel #19
0
 def node_path(self):
     return expand_var(self.view.window(),
                       get_setting(self.view, 'node_path'))
Beispiel #20
0
 def get_additional_cli_args(view):
     return dict(get_setting(view, 'additional_cli_args', {}))
Beispiel #21
0
 def node_path(self):
     return get_setting(self.view, 'node_path')