-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Run prettier against project (#24)
- Loading branch information
Showing
8 changed files
with
557 additions
and
556 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,3 @@ | ||
CHANGELOG.md | ||
out/ | ||
package-lock.json |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
{ | ||
"comments": { | ||
"lineComment": "//", | ||
"blockComment": [ "/*", "*/" ] | ||
}, | ||
"brackets": [ | ||
["{", "}"], | ||
["[", "]"], | ||
["(", ")"] | ||
], | ||
"autoClosingPairs": [ | ||
["{", "}"], | ||
["[", "]"], | ||
["(", ")"], | ||
["\"", "\""] | ||
], | ||
"surroundingPairs": [ | ||
["{", "}"], | ||
["[", "]"], | ||
["(", ")"], | ||
["\"", "\""] | ||
] | ||
} | ||
"comments": { | ||
"lineComment": "//", | ||
"blockComment": ["/*", "*/"] | ||
}, | ||
"brackets": [ | ||
["{", "}"], | ||
["[", "]"], | ||
["(", ")"] | ||
], | ||
"autoClosingPairs": [ | ||
["{", "}"], | ||
["[", "]"], | ||
["(", ")"], | ||
["\"", "\""] | ||
], | ||
"surroundingPairs": [ | ||
["{", "}"], | ||
["[", "]"], | ||
["(", ")"], | ||
["\"", "\""] | ||
] | ||
} |
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 |
---|---|---|
@@ -1,123 +1,123 @@ | ||
{ | ||
"name": "vscode-noir", | ||
"displayName": "Noir Language Support", | ||
"description": "Noir support for Visual Studio Code", | ||
"version": "0.0.3", | ||
"publisher": "noir-lang", | ||
"keywords": [ | ||
"noir", | ||
"noir-lang" | ||
"name": "vscode-noir", | ||
"displayName": "Noir Language Support", | ||
"description": "Noir support for Visual Studio Code", | ||
"version": "0.0.3", | ||
"publisher": "noir-lang", | ||
"keywords": [ | ||
"noir", | ||
"noir-lang" | ||
], | ||
"icon": "noir.png", | ||
"engines": { | ||
"vscode": "^1.67.0" | ||
}, | ||
"license": "Apache-2.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/noir-lang/vscode-noir" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/noir-lang/vscode-noir/issues" | ||
}, | ||
"categories": [ | ||
"Programming Languages" | ||
], | ||
"activationEvents": [ | ||
"onLanguage:noir" | ||
], | ||
"main": "./out/extension", | ||
"contributes": { | ||
"commands": [ | ||
{ | ||
"command": "noir.restart", | ||
"title": "Noir: Restart Language Server" | ||
} | ||
], | ||
"icon": "noir.png", | ||
"engines": { | ||
"vscode": "^1.67.0" | ||
}, | ||
"license": "Apache-2.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/noir-lang/vscode-noir" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/noir-lang/vscode-noir/issues" | ||
}, | ||
"categories": [ | ||
"Programming Languages" | ||
"snippets": [ | ||
{ | ||
"language": "noir", | ||
"path": "./snippets/snippets.json" | ||
} | ||
], | ||
"activationEvents": [ | ||
"onLanguage:noir" | ||
], | ||
"main": "./out/extension", | ||
"contributes": { | ||
"commands": [ | ||
{ | ||
"command": "noir.restart", | ||
"title": "Noir: Restart Language Server" | ||
} | ||
], | ||
"snippets": [ | ||
{ | ||
"language": "noir", | ||
"path": "./snippets/snippets.json" | ||
} | ||
], | ||
"languages": [ | ||
{ | ||
"id": "noir", | ||
"aliases": [ | ||
"Noir", | ||
"noir" | ||
], | ||
"extensions": [ | ||
".nr" | ||
], | ||
"configuration": "./language-configuration.json" | ||
} | ||
"languages": [ | ||
{ | ||
"id": "noir", | ||
"aliases": [ | ||
"Noir", | ||
"noir" | ||
], | ||
"grammars": [ | ||
{ | ||
"language": "noir", | ||
"scopeName": "source.nr", | ||
"path": "./syntaxes/noir.tmLanguage.json" | ||
} | ||
"extensions": [ | ||
".nr" | ||
], | ||
"configuration": { | ||
"type": "object", | ||
"title": "Noir Language Server configuration", | ||
"properties": { | ||
"noir.nargoFlags": { | ||
"scope": "resource", | ||
"type": "string", | ||
"description": "Space-separated list of flags to pass to the nargo CLI" | ||
}, | ||
"noir.nargoPath": { | ||
"scope": "resource", | ||
"type": "string", | ||
"description": "Absolute path to the nargo CLI (detected in PATH if not specified)" | ||
}, | ||
"noir.enableLSP": { | ||
"scope": "resource", | ||
"type": "boolean", | ||
"default": true, | ||
"description": "Enable the language server" | ||
}, | ||
"noir.trace.server": { | ||
"scope": "resource", | ||
"type": "string", | ||
"enum": [ | ||
"off", | ||
"messages", | ||
"verbose" | ||
], | ||
"default": "off", | ||
"description": "Traces the communication between VS Code and the language server." | ||
} | ||
} | ||
"configuration": "./language-configuration.json" | ||
} | ||
], | ||
"grammars": [ | ||
{ | ||
"language": "noir", | ||
"scopeName": "source.nr", | ||
"path": "./syntaxes/noir.tmLanguage.json" | ||
} | ||
], | ||
"configuration": { | ||
"type": "object", | ||
"title": "Noir Language Server configuration", | ||
"properties": { | ||
"noir.nargoFlags": { | ||
"scope": "resource", | ||
"type": "string", | ||
"description": "Space-separated list of flags to pass to the nargo CLI" | ||
}, | ||
"noir.nargoPath": { | ||
"scope": "resource", | ||
"type": "string", | ||
"description": "Absolute path to the nargo CLI (detected in PATH if not specified)" | ||
}, | ||
"noir.enableLSP": { | ||
"scope": "resource", | ||
"type": "boolean", | ||
"default": true, | ||
"description": "Enable the language server" | ||
}, | ||
"noir.trace.server": { | ||
"scope": "resource", | ||
"type": "string", | ||
"enum": [ | ||
"off", | ||
"messages", | ||
"verbose" | ||
], | ||
"default": "off", | ||
"description": "Traces the communication between VS Code and the language server." | ||
} | ||
}, | ||
"scripts": { | ||
"vscode:prepublish": "npm run esbuild-base -- --minify", | ||
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node", | ||
"esbuild": "npm run esbuild-base -- --sourcemap", | ||
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch", | ||
"package": "vsce package", | ||
"test-compile": "tsc -p ./", | ||
"format": "prettier --write .", | ||
"check-format": "prettier --check .", | ||
"deploy": "vsce publish" | ||
}, | ||
"dependencies": { | ||
"vscode-languageclient": "^8.0.3", | ||
"which": "^3.0.1" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^12.12.0", | ||
"@types/vscode": "1.67.0", | ||
"@types/which": "^3.0.0", | ||
"@typescript-eslint/parser": "^5.59.9", | ||
"esbuild": "^0.17.19", | ||
"eslint": "^8.42.0", | ||
"prettier": "^2.8.8", | ||
"typescript": "^5.1.3", | ||
"vsce": "^2.15.0" | ||
} | ||
} | ||
}, | ||
"scripts": { | ||
"vscode:prepublish": "npm run esbuild-base -- --minify", | ||
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node", | ||
"esbuild": "npm run esbuild-base -- --sourcemap", | ||
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch", | ||
"package": "vsce package", | ||
"test-compile": "tsc -p ./", | ||
"format": "prettier --write .", | ||
"check-format": "prettier --check .", | ||
"deploy": "vsce publish" | ||
}, | ||
"dependencies": { | ||
"vscode-languageclient": "^8.0.3", | ||
"which": "^3.0.1" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^12.12.0", | ||
"@types/vscode": "1.67.0", | ||
"@types/which": "^3.0.0", | ||
"@typescript-eslint/parser": "^5.59.9", | ||
"esbuild": "^0.17.19", | ||
"eslint": "^8.42.0", | ||
"prettier": "^2.8.8", | ||
"typescript": "^5.1.3", | ||
"vsce": "^2.15.0" | ||
} | ||
} |
Oops, something went wrong.