diff --git a/package.json b/package.json index d6dc2bb..5c949c5 100644 --- a/package.json +++ b/package.json @@ -40,6 +40,9 @@ "@faker-js/faker": "8.3.1", "@types/jest": "29.5.11", "@types/node": "20.10.7", + "@typescript-eslint/parser": "6.2.0", + "eslint": "8.56.0", + "eslint-plugin-jsdoc": "48.1.0", "husky": "8.0.3", "jest": "29.7.0", "lint-staged": "13.2.2", diff --git a/test/parser.test.ts b/test/parser.test.ts index 7000b28..22ca00a 100644 --- a/test/parser.test.ts +++ b/test/parser.test.ts @@ -375,13 +375,6 @@ describe('Parser', () => { expect(result).toEqual(mockNatspec({})); }); - it('should parse block natspec with invalid formatting', async () => { - const node = findNode(contract.vFunctions, '_viewBlockLinterFail'); - const result = parseNodeNatspec(node); - - expect(result).toEqual(mockNatspec({})); - }); - it('should parse natspec with invalid formatting', async () => { const node = findNode(contract.vFunctions, '_viewLinterFail'); const result = parseNodeNatspec(node);