Skip to content

Commit

Permalink
Original version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenfuqua committed Aug 28, 2020
1 parent 3582cb5 commit 626b81b
Show file tree
Hide file tree
Showing 191 changed files with 10,320 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .gitattributes
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
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# IDE files
/.idea/
*.iml

# Generated files
*.csv
*.pyc
/artifacts/
/TestResults/
*.pdf

node_modules/
14 changes: 14 additions & 0 deletions .vscode/extensions.json
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"
]
}
74 changes: 74 additions & 0 deletions .vscode/settings.json
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"
]
}
}
Loading

0 comments on commit 626b81b

Please sign in to comment.