diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index fa9699b..0000000 --- a/.prettierrc +++ /dev/null @@ -1,7 +0,0 @@ -{ - "semi": true, - "trailingComma": "all", - "singleQuote": true, - "printWidth": 80, - "tabWidth": 2 -} diff --git a/README.md b/README.md index 91d99ca..a334876 100644 --- a/README.md +++ b/README.md @@ -3,10 +3,10 @@ Asynchronous lock utilities. JavaScript exposes the ability to create interleaved execution of asynchronous -operations. When this is done with shared state between asynchronous -overlapping functions that perform partial state transitions, this can lead to -race conditions or data corruption and clobbering, or just invalid pre-condition -or post-condition behaviour. +operations. When this is done with shared state between asynchronous overlapping +functions that perform partial state transitions, this can lead to race +conditions or data corruption and clobbering, or just invalid pre-condition or +post-condition behaviour. This library provides multiple synchronization constructs that allow one to precisely control concurrent operations. These constructs are intended for diff --git a/package-lock.json b/package-lock.json index fd48ba6..48241f9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15,7 +15,7 @@ "@matrixai/timer": "^2.0.0" }, "devDependencies": { - "@matrixai/lint": "^0.2.6", + "@matrixai/lint": "^0.2.11", "@swc/core": "^1.3.76", "@swc/jest": "^0.2.29", "@types/jest": "^29.5.2", @@ -2093,9 +2093,9 @@ } }, "node_modules/@matrixai/lint": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/@matrixai/lint/-/lint-0.2.6.tgz", - "integrity": "sha512-Cbx6SCTAqSt7lTKkaXL7wB+KbkiXYpQ0LdV5fPcnzEfG0sCuG8dbJcwzgHT5Qn7ubG71BBLUVFjHY1EGADzT8g==", + "version": "0.2.11", + "resolved": "https://registry.npmjs.org/@matrixai/lint/-/lint-0.2.11.tgz", + "integrity": "sha512-Q/atLaVExgQbd7b/sXCvTAIus0M+egxr6fjHFNzpUZGY3Gu+UkYQrel/440JnvZ+fK8fq9GTHewpa14H08AcRw==", "dev": true, "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index c8d4a6a..1ad1b80 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "@matrixai/timer": "^2.0.0" }, "devDependencies": { - "@matrixai/lint": "^0.2.6", + "@matrixai/lint": "^0.2.11", "@swc/core": "^1.3.76", "@swc/jest": "^0.2.29", "@types/jest": "^29.5.2",