Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/eslint-plugin-query/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
"url": "https://github.com/sponsors/tannerlinsley"
},
"scripts": {

dd
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid JSON Syntax

Invalid token 'dd' inserted into JSON structure breaks package.json parsing. This malformed JSON will cause npm install failures and prevent script execution across development and CI environments.

Standards
  • Algorithm-Correctness-JSON-Parsing
  • Business-Rule-Package-Validation

II
dfsgfs
Comment on lines +19 to +21
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid JSON Structure

Invalid tokens inserted into package.json scripts section breaks JSON syntax. The strings 'dd', 'II', and 'dfsgfs' are not valid JSON properties, causing npm script parsing failures and blocking all package operations including clean, compile, and test commands.

    "scripts": {
Commitable Suggestion
Suggested change
dd
II
dfsgfs
"scripts": {
Standards
  • Algorithm-Correctness-JSON-Parsing
  • Business-Rule-Package-Configuration

Comment on lines +19 to +21
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Corrupted JSON Configuration

Invalid JSON tokens in scripts section break npm command execution and CI pipeline functionality. Malformed configuration blocks all development workflows including builds, tests, and deployments for the eslint-plugin-query package.

    "scripts": {
Commitable Suggestion
Suggested change
dd
II
dfsgfs
"scripts": {
Standards
  • Clean-Code-Configuration
  • Refactoring-Remove-Dead-Code

"clean": "premove ./dist ./coverage ./dist-ts",
"compile": "tsc --build",
"test:eslint": "eslint ./src",
Expand Down
Loading