-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3582cb5
commit 626b81b
Showing
191 changed files
with
10,320 additions
and
0 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,11 @@ | ||
*.md text | ||
*.txt text | ||
*.py text | ||
*.bat text | ||
*.json text | ||
*.sql text | ||
*.config text | ||
*.exe binary | ||
*.bat text | ||
*.cmd text | ||
*.ps1 text |
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,12 @@ | ||
# IDE files | ||
/.idea/ | ||
*.iml | ||
|
||
# Generated files | ||
*.csv | ||
*.pyc | ||
/artifacts/ | ||
/TestResults/ | ||
|
||
node_modules/ |
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,14 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
{ | ||
"recommendations": [ | ||
"psioniq.psi-header", | ||
"streetsidesoftware.code-spell-checker", | ||
"editorconfig.editorconfig" | ||
] | ||
} |
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" | ||
}, | ||
{ | ||
"language": "kotlin", | ||
"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": "-- " | ||
} | ||
], | ||
"psi-header.changes-tracking": { | ||
"autoHeader": "autoSave", | ||
"exclude": [ | ||
"css", "json", "xml", "config", "plaintext", "markdown", "batch" | ||
] | ||
} | ||
} |
Oops, something went wrong.