sindresorhus / editorconfig-sublime

Sublime Text plugin for EditorConfig - Helps developers maintain consistent coding styles between different editors
MIT License
1.77k stars 108 forks source link

Error occurred while getting EditorConfig properties #48

Closed kitsguru closed 8 years ago

kitsguru commented 8 years ago

The console is showing an error: Error occurred while getting EditorConfig properties

my .editorconfig:

# editorconfig.org
# configuration used by Jeff Shields
# July 26, 2015

root = true

[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_size = 4
indent_style = space

[*.{markdown,md,todo}]
trim_trailing_whitespace = false

[**.js]
indent_style = tab

// cms builder has its own format
[cmsb/**.php]
indent_size = 2
end_of_line = crlf

[package.json]
# The indent size used in the `package.json` file cannot be changed
# https://github.com/npm/npm/pull/3180#issuecomment-16336516
indent_size = 2
indent_style = space

[*.py]
indent_size = 4

I have no idea what the error could be and none of the rules are being applied

kitsguru commented 8 years ago

found the typo on the comment