-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Config indentation and editorconfig (#306)
- Loading branch information
1 parent
efaeec1
commit 0cb6354
Showing
2 changed files
with
21 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# EditorConfig <http://EditorConfig.org> | ||
root = true | ||
|
||
# elementary defaults | ||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = tab | ||
indent_style = space | ||
insert_final_newline = true | ||
max_line_length = 80 | ||
tab_width = 4 | ||
|
||
[{*.xml,*.xml.in,*.yml}] | ||
tab_width = 2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
namespace Build { | ||
public const string GETTEXT_PACKAGE = "@GETTEXT_PACKAGE@"; | ||
public const string LANG_LIST = "@LANG_LIST@"; | ||
public const string PREFERRED_LANG_LIST = "@PREFERRED_LANG_LIST@"; | ||
public const string SQUASHFS_PATH = "@SQUASHFS_PATH@"; | ||
public const string MANIFEST_REMOVE_PATH = "@MANIFEST_REMOVE_PATH@"; | ||
public const string GETTEXT_PACKAGE = "@GETTEXT_PACKAGE@"; | ||
public const string LANG_LIST = "@LANG_LIST@"; | ||
public const string PREFERRED_LANG_LIST = "@PREFERRED_LANG_LIST@"; | ||
public const string SQUASHFS_PATH = "@SQUASHFS_PATH@"; | ||
public const string MANIFEST_REMOVE_PATH = "@MANIFEST_REMOVE_PATH@"; | ||
} |