Gathering detailed insights and metrics for vscode-css-languageservice-commonjs
Gathering detailed insights and metrics for vscode-css-languageservice-commonjs
Gathering detailed insights and metrics for vscode-css-languageservice-commonjs
Gathering detailed insights and metrics for vscode-css-languageservice-commonjs
CSS, LESS & SCSS language service extracted from VSCode to be reused, e.g in the Monaco editor.
npm install vscode-css-languageservice-commonjs
Typescript
Module System
Node Version
NPM Version
TypeScript (93.07%)
JavaScript (6.56%)
SCSS (0.36%)
CSS (0.02%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
348 Stars
1,137 Commits
195 Forks
33 Watchers
24 Branches
145 Contributors
Updated on Jun 30, 2025
Latest Version
0.0.1
Package Id
vscode-css-languageservice-commonjs@0.0.1
Size
119.50 kB
NPM Version
5.0.3
Node Version
8.1.2
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
8
Language services for CSS, LESS and SCSS
The vscode-css-languageservice contains the language smarts behind the CSS, LESS and SCSS editing experience of Visual Studio Code and the Monaco editor.
npm install --save vscode-css-languageservice
1 2export interface LanguageService { 3 configure(raw: LanguageSettings): void; 4 doValidation(document: TextDocument, stylesheet: Stylesheet): Diagnostic[]; 5 parseStylesheet(document: TextDocument): Stylesheet; 6 doComplete(document: TextDocument, position: Position, stylesheet: Stylesheet): CompletionList; 7 doHover(document: TextDocument, position: Position, stylesheet: Stylesheet): Hover; 8 findDefinition(document: TextDocument, position: Position, stylesheet: Stylesheet): Location; 9 findReferences(document: TextDocument, position: Position, stylesheet: Stylesheet): Location[]; 10 findDocumentHighlights(document: TextDocument, position: Position, stylesheet: Stylesheet): DocumentHighlight[]; 11 findDocumentSymbols(document: TextDocument, stylesheet: Stylesheet): SymbolInformation[]; 12 doCodeActions(document: TextDocument, range: Range, context: CodeActionContext, stylesheet: Stylesheet): Command[]; 13 findColorSymbols(document: TextDocument, stylesheet: Stylesheet): Range[]; 14 doRename(document: TextDocument, position: Position, newName: string, stylesheet: Stylesheet): WorkspaceEdit; 15} 16 17export interface LanguageSettings { 18 validate?: boolean; 19 lint?: any; 20} 21
(MIT License)
Copyright 2016, Microsoft
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
GitHub workflow tokens follow principle of least privilege
Details
Reason
security policy file detected
Details
Reason
all changesets reviewed
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 existing vulnerabilities detected
Reason
9 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 9
Reason
branch protection is not maximal on development and all release branches
Details
Reason
dependency not pinned by hash detected -- score normalized to 3
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More