@k03mad/dns-leak 3.4.0 → 3.5.0
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.
- package/.github/workflows/{eslint.yml → lint.yml} +6 -14
- package/.vscode/settings.json +3 -0
- package/eslint.config.js +1 -0
- package/package.json +5 -14
- package/.eslintrc.json +0 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
name:
|
|
1
|
+
name: Lint
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
@@ -11,11 +11,10 @@ on:
|
|
|
11
11
|
- cron: '00 15 * * 6'
|
|
12
12
|
|
|
13
13
|
jobs:
|
|
14
|
-
|
|
15
|
-
name:
|
|
14
|
+
lint:
|
|
15
|
+
name: Lint
|
|
16
16
|
permissions:
|
|
17
17
|
contents: read
|
|
18
|
-
security-events: write
|
|
19
18
|
runs-on: ubuntu-latest
|
|
20
19
|
steps:
|
|
21
20
|
- name: Checkout
|
|
@@ -26,15 +25,8 @@ jobs:
|
|
|
26
25
|
with:
|
|
27
26
|
node-version-file: '.nvmrc'
|
|
28
27
|
|
|
29
|
-
- name:
|
|
28
|
+
- name: Run setup
|
|
30
29
|
run: npm run setup
|
|
31
30
|
|
|
32
|
-
- name: Run
|
|
33
|
-
run: npm run lint
|
|
34
|
-
continue-on-error: true
|
|
35
|
-
|
|
36
|
-
- name: Upload results
|
|
37
|
-
uses: github/codeql-action/upload-sarif@v3
|
|
38
|
-
with:
|
|
39
|
-
sarif_file: eslint-results.sarif
|
|
40
|
-
wait-for-processing: true
|
|
31
|
+
- name: Run lint
|
|
32
|
+
run: npm run lint
|
package/eslint.config.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {default} from '@k03mad/eslint-config';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@k03mad/dns-leak",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0",
|
|
4
4
|
"description": "DNS leak test",
|
|
5
5
|
"maintainers": [
|
|
6
6
|
"Kirill Molchanov <k03.mad@gmail.com"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"node": ">=20"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@k03mad/request": "4.
|
|
17
|
+
"@k03mad/request": "4.3.0",
|
|
18
18
|
"chalk": "5.3.0",
|
|
19
19
|
"country-locale-map": "1.9.0",
|
|
20
20
|
"nanoid": "5.0.4",
|
|
@@ -22,22 +22,13 @@
|
|
|
22
22
|
"ora": "8.0.1"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@k03mad/eslint-config": "
|
|
26
|
-
"@microsoft/eslint-formatter-sarif": "3.0.0",
|
|
27
|
-
"@stylistic/eslint-plugin": "1.5.1",
|
|
25
|
+
"@k03mad/eslint-config": "16.3.0",
|
|
28
26
|
"eslint": "8.56.0",
|
|
29
|
-
"eslint-plugin-import": "2.29.1",
|
|
30
|
-
"eslint-plugin-jsdoc": "46.9.1",
|
|
31
|
-
"eslint-plugin-n": "16.5.0",
|
|
32
|
-
"eslint-plugin-simple-import-sort": "10.0.0",
|
|
33
|
-
"eslint-plugin-sonarjs": "0.23.0",
|
|
34
|
-
"eslint-plugin-sort-destructure-keys": "1.5.0",
|
|
35
|
-
"eslint-plugin-unicorn": "50.0.1",
|
|
36
27
|
"husky": "8.0.3"
|
|
37
28
|
},
|
|
38
29
|
"scripts": {
|
|
39
|
-
"lint": "
|
|
40
|
-
"lint:
|
|
30
|
+
"lint": "npm run lint:eslint",
|
|
31
|
+
"lint:eslint": "eslint ./ --cache",
|
|
41
32
|
"clean": "rm -rf ./node_modules || true",
|
|
42
33
|
"setup": "npm run clean && npm i",
|
|
43
34
|
"prepare": "husky install"
|
package/.eslintrc.json
DELETED