diff --git a/.gitattributes b/.gitattributes index be42ee6..86b8cf2 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,6 +1,5 @@ .gitattributes export-ignore .gitignore export-ignore /.git export-ignore -/.git export-ignore /.github export-ignore /.vscode export-ignore \ No newline at end of file diff --git a/.gitignore b/.gitignore index dce7d3b..e69de29 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +0,0 @@ -*.ffs_db -.vscode/tasks.json diff --git a/.vscode/settings.json b/.vscode/settings.json index b3f29e3..e40184f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -6,6 +6,13 @@ "spellright.documentTypes": [ "markdown", "latex", - "plaintext" - ] + "plaintext", + "properties", + "lua" + ], + "spellright.parserByClass": { + "properties": { + "parser": "plain" + } + } } \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..0f69378 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,38 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "mklink", + "type": "shell", + "command": "powershell", + "args": [ + "-ExecutionPolicy", + "Unrestricted", + "-NoProfile", + "-File", + "${workspaceFolder}\\..\\makelink.ps1" + ], + "problemMatcher": [], + "group": { + "kind": "build", + "isDefault": true + } + }, + { + "label": "create archive", + "type": "shell", + "command": "powershell", + "args": [ + "-ExecutionPolicy", + "Unrestricted", + "-NoProfile", + "-File", + "${workspaceFolder}\\..\\makezip.ps1" + ], + "problemMatcher": [], + "group": "build" + } + ] +} \ No newline at end of file