aboutsummaryrefslogtreecommitdiffstats
path: root/atk16-syntax/package.json
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2024-02-21 12:07:07 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2024-02-21 12:07:07 +0200
commit927c018f12e73c254cec32c0f60e1c01b9fc0319 (patch)
tree21fbb975e3567cb0d9ab3fb34519c50325571d6c /atk16-syntax/package.json
parenta0b4a1a6107e4dc905b21858d8ac76c47293cfb4 (diff)
Refactor names
Diffstat (limited to 'atk16-syntax/package.json')
-rw-r--r--atk16-syntax/package.json48
1 files changed, 0 insertions, 48 deletions
diff --git a/atk16-syntax/package.json b/atk16-syntax/package.json
deleted file mode 100644
index 6a64b6c..0000000
--- a/atk16-syntax/package.json
+++ /dev/null
@@ -1,48 +0,0 @@
-{
- "name": "atk16-syntax",
- "displayName": "ATK16 Syntax",
- "description": "Syntax highlighting and support for ATK16 assembly language",
- "version": "0.0.1",
- "publisher": "JanTuomi",
- "license": "MIT",
- "repository": "",
- "engines": {
- "vscode": "^1.60.0"
- },
- "categories": ["Programming Languages"],
- "activationEvents": [
- "onLanguage:atk16"
- ],
- "main": "./extension.js",
- "contributes": {
- "languages": [
- {
- "id": "atk16",
- "aliases": ["ATK16 Assembly", "atk16"],
- "extensions": [".atk16"],
- "configuration": "./language-configuration.json"
- }
- ],
- "grammars": [
- {
- "language": "atk16",
- "scopeName": "source.atk16",
- "path": "./syntaxes/atk16.tmLanguage.json"
- }
- ],
- "configurationDefaults": {
- "editor.tokenColorCustomizations": {
- "[Default Dark+]": {
- "textMateRules": [
- {
- "scope": "comment.documentation.atk16",
- "settings": {
- "fontStyle": "italic"
- }
- }
- ]
- }
- }
- }
- }
-}