generated from Ed-Fi-Exchange-OSS/Template-for-GitHub
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #103 from Ed-Fi-Exchange-OSS/license-headers
License headers
- Loading branch information
Showing
225 changed files
with
1,793 additions
and
527 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,52 @@ | ||
# http://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
indent_style=space | ||
indent_size=4 | ||
tab_width=2 | ||
insert_final_newline = true | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
max_line_length = 110 | ||
|
||
[*.yml] | ||
indent_size=2 | ||
|
||
[**.min.js] | ||
# Minified JavaScript files shouldn't be changed | ||
indent_style = ignore | ||
insert_final_newline = ignore | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[*.{cs,cshtml,csx}] | ||
end_of_line = crlf | ||
# ReSharper inspection severities | ||
resharper_arrange_redundant_parentheses_highlighting=hint | ||
resharper_arrange_this_qualifier_highlighting=hint | ||
resharper_arrange_type_member_modifiers_highlighting=hint | ||
resharper_arrange_type_modifiers_highlighting=hint | ||
resharper_built_in_type_reference_style_for_member_access_highlighting=hint | ||
resharper_built_in_type_reference_style_highlighting=hint | ||
resharper_redundant_base_qualifier_highlighting=warning | ||
resharper_suggest_var_or_type_built_in_types_highlighting=hint | ||
resharper_suggest_var_or_type_elsewhere_highlighting=hint | ||
resharper_suggest_var_or_type_simple_types_highlighting=hint | ||
# Microsoft .NET properties | ||
csharp_new_line_before_members_in_object_initializers=false | ||
csharp_preferred_modifier_order=public, private, protected, internal, new, abstract, virtual, sealed, override, static, readonly, extern, unsafe, volatile, async:suggestion | ||
csharp_style_var_elsewhere=true:suggestion | ||
csharp_style_var_for_built_in_types=true:suggestion | ||
csharp_style_var_when_type_is_apparent=true:suggestion | ||
dotnet_style_parentheses_in_arithmetic_binary_operators=never_if_unnecessary:none | ||
dotnet_style_parentheses_in_other_binary_operators=never_if_unnecessary:none | ||
dotnet_style_parentheses_in_relational_binary_operators=never_if_unnecessary:none | ||
dotnet_style_predefined_type_for_locals_parameters_members=true:suggestion | ||
dotnet_style_predefined_type_for_member_access=true:suggestion | ||
dotnet_style_qualification_for_event=false:suggestion | ||
dotnet_style_qualification_for_field=false:suggestion | ||
dotnet_style_qualification_for_method=false:suggestion | ||
dotnet_style_qualification_for_property=false:suggestion | ||
dotnet_style_require_accessibility_modifiers=for_non_interface_members:suggestion |
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
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,9 @@ | ||
{ | ||
"recommendations": [ | ||
"psioniq.psi-header", | ||
"EditorConfig.EditorConfig", | ||
"ms-dotnettools.csharp", | ||
"ms-vscode.powershell", | ||
"streetsidesoftware.code-spell-checker" | ||
] | ||
} |
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,74 @@ | ||
{ | ||
"files.associations": { | ||
"*.metaed": "csharp" | ||
}, | ||
"psi-header.config": { | ||
"forceToTop": true, | ||
"blankLinesAfter": 1, | ||
"license": "Custom" | ||
}, | ||
"psi-header.templates": [ | ||
{ | ||
"language": "*", | ||
"template": [ | ||
"SPDX-License-Identifier: Apache-2.0", | ||
"Licensed to the Ed-Fi Alliance under one or more agreements.", | ||
"The Ed-Fi Alliance licenses this file to you under the Apache License, Version 2.0.", | ||
"See the LICENSE and NOTICES files in the project root for more information." | ||
] | ||
} | ||
], | ||
"psi-header.lang-config":[ | ||
{ | ||
"_": "Apply double slash-based comments", | ||
"language": "csharp", | ||
"begin": "", | ||
"end": "", | ||
"prefix": "// " | ||
}, | ||
{ | ||
"language": "javascript", | ||
"mapTo": "csharp" | ||
}, | ||
{ | ||
"language": "typescript", | ||
"mapTo": "csharp" | ||
}, | ||
{ | ||
"language": "metaed", | ||
"mapTo": "csharp" | ||
}, | ||
{ | ||
"_": "Apply hash-based comments", | ||
"language": "python", | ||
"begin": "", | ||
"end": "", | ||
"prefix": "# " | ||
}, | ||
{ | ||
"language": "powershell", | ||
"mapTo": "python" | ||
}, | ||
{ | ||
"language": "dockerfile", | ||
"mapTo": "python" | ||
}, | ||
{ | ||
"_": "Apply double dash-based comments", | ||
"language": "sql", | ||
"begin": "", | ||
"end": "", | ||
"prefix": "-- " | ||
}, | ||
{ | ||
"language": "yaml", | ||
"mapTo": "python" | ||
} | ||
], | ||
"psi-header.changes-tracking": { | ||
"autoHeader": "autoSave", | ||
"exclude": [ | ||
"css", "json", "xml", "config", "plaintext", "markdown", "batch" | ||
] | ||
} | ||
} |
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
5 changes: 5 additions & 0 deletions
5
ImportDataModules/ImportDataBasicFunctions/ImportDataBasicFunctions.psm1
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
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
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
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
Oops, something went wrong.