@electrum-cash/eslint-config 1.1.0-development.12711005427 → 1.1.0-development.12825182533

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -21,7 +21,7 @@ npm install --save-dev \
21
21
  After installing the dependencies, you can install the module containing the configuration:
22
22
 
23
23
  ```bash
24
- npm install --save-dev https://gitlab.com/electrum-cash/eslint-config
24
+ npm install --save-dev @electrum-cash/eslint-config
25
25
  ```
26
26
 
27
27
  ### Configuration
@@ -35,5 +35,5 @@ export { default } from '@electrum-cash/eslint-config';
35
35
  Then add the following instruction to the `scripts` section of the `package.json` file:
36
36
 
37
37
  ```
38
- "lint": "eslint"
38
+ "style": "eslint"
39
39
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@electrum-cash/eslint-config",
3
- "version": "1.1.0-development.12711005427",
3
+ "version": "1.1.0-development.12825182533",
4
4
  "description": "ESLint configuration for Electrum Cash projects",
5
5
  "type": "module",
6
6
  "main": "eslint.config.mjs",
@@ -12,7 +12,7 @@
12
12
  ],
13
13
  "scripts": {
14
14
  "build": "true",
15
- "lint": "eslint",
15
+ "style": "eslint",
16
16
  "syntax": "true",
17
17
  "spellcheck": "cspell eslint.config.mjs",
18
18
  "test": "vitest --passWithNoTests --dir test/ --test-timeout=15000 --run --coverage",