Skip to content

Commit

Permalink
Merge branch 'master' into full_class_name
Browse files Browse the repository at this point in the history
  • Loading branch information
neild3r committed Feb 11, 2022
2 parents 5397ff3 + 806d1ff commit 9cbdbc9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,7 @@ All notable changes to the "php-docblocker" extension will be documented in this
- Fixed fully qualifies class namespace detection can be incorrect with _ [#214](https://github.com/neild3r/vscode-php-docblocker/issues/214)
- Supported fully qualifies class namespace use with bracket `use some\namespace\{ ClassA, ClassB, ... }`
- Supported fully qualifies class namespace use with comma `use some\namespace\ClassA, some\namespace\ClassB, ...`
- Fix issue with coverage reports not firing

## [2.6.1] - 2021-10-12
- Fix double start delimeter when vscode setting `editor.autoClosingBrackets` is set to `never`
Expand Down
1 change: 0 additions & 1 deletion README.md
Expand Up @@ -9,7 +9,6 @@ We now have a set of unit tests and some full coverage on the parsing of signatu
## Features

* Completion snippet after `/**` above a class, function, class property
* Continuation of DocBlock when pressing enter when in a DocBlock
* Completion of DocBlock tags such as `@param`, `@return`, `@throws`
* Inferring of param and return types from signatures
* Configuration of template for each type of docblock completion
Expand Down
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -142,6 +142,7 @@
}
},
"scripts": {
"clean": "rm -rf ./coverage/* ./.nyc_output ./out",
"verify-pat": "vsce verify-pat",
"vscode:prepublish": "npm run -S esbuild-base -- --minify",
"lint": "tslint -p ./",
Expand All @@ -166,7 +167,7 @@
"esbuild": "^0.12.29",
"markdown-table-ts": "^1.0.3",
"mocha": "^9.1.1",
"nyc": "^15.0.0",
"nyc": "^15.1.0",
"typescript": "^3.9.10",
"vsce": "^1.100.0",
"vscode-test": "^1.6.1"
Expand Down
2 changes: 1 addition & 1 deletion test/index.ts
Expand Up @@ -53,6 +53,6 @@ export async function run(): Promise<void> {
});
} finally {
nyc.writeCoverageFile();
nyc.report();
await nyc.report();
}
}

0 comments on commit 9cbdbc9

Please sign in to comment.