Skip to content

Commit 19b888c

Browse files
authored
feat(denolint): upgrade denolint crate (#762)
1 parent 5cf454d commit 19b888c

File tree

8 files changed

+51
-13
lines changed

8 files changed

+51
-13
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ packages/*/*.wasi.cjs
1313
packages/*/wasi-worker.mjs
1414
packages/*/index.js
1515
packages/*/index.d.ts
16+
packages/bcrypt/binding.js

.prettierignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ node_modules
33
lib
44
.yarn
55
yarn.lock
6-
packages/*/*.wasi.js
6+
packages/*/*.wasi.cjs
77
packages/*/index.js
8+
packages/*/browser.js
9+
packages/*/wasi-worker*
810
packages/*/index.d.ts
11+
packages/*/binding.js
12+
packages/*/binding.d.ts

packages/bcrypt/__tests__/bcrypt.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ test('genSalt should return a string', async (t) => {
2323
t.is(typeof (await genSalt(10, '2b')), 'string')
2424
t.is(typeof (await genSalt(10, '2y')), 'string')
2525
t.is(typeof (await genSalt(10, '2x')), 'string')
26-
await t.throwsAsync(async () => genSalt(10, 'invalid' as any))
26+
t.throws(() => genSalt(10, 'invalid' as any))
2727
})
2828

2929
test('verifySync hashed password from bcrypt should be true', (t) => {

packages/deno-lint/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ version = "0.1.0"
88
crate-type = ["cdylib"]
99

1010
[dependencies]
11-
annotate-snippets = { version = "0.9", features = ["color"] }
11+
annotate-snippets = { version = "0.10" }
1212
anyhow = "1"
13-
deno_ast = "=0.31.6"
14-
deno_lint = "=0.52.2"
13+
deno_ast = "=1.0.1"
14+
deno_lint = "=0.53.0"
1515
env_logger = "0.10"
1616
global_alloc = { path = "../../crates/alloc" }
1717
globwalk = "0.9"

packages/deno-lint/cli.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class LintCommand extends Command {
1212

1313
private readonly checkOnly = Option.Boolean('--check-only', { required: false })
1414

15-
async execute() {
15+
execute() {
1616
const hasError = denolint(this.cwd ?? __dirname, this.configPath ?? '.denolint.json')
1717
return Promise.resolve(hasError && !this.checkOnly ? 1 : 0)
1818
}

packages/deno-lint/index.js

+14
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,20 @@ switch (platform) {
298298
}
299299
}
300300
break
301+
case 's390x':
302+
localFileExisted = existsSync(
303+
join(__dirname, 'deno-lint.linux-s390x-gnu.node')
304+
)
305+
try {
306+
if (localFileExisted) {
307+
nativeBinding = require('./deno-lint.linux-s390x-gnu.node')
308+
} else {
309+
nativeBinding = require('@node-rs/deno-lint-linux-s390x-gnu')
310+
}
311+
} catch (e) {
312+
loadError = e
313+
}
314+
break
301315
default:
302316
throw new Error(`Unsupported architecture on Linux: ${arch}`)
303317
}

packages/deno-lint/src/lib.rs

+12-7
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ use std::path::Path;
1111
use std::str;
1212

1313
use deno_ast::MediaType;
14+
use deno_lint::linter::LintFileOptions;
1415
use deno_lint::linter::LinterBuilder;
1516
use deno_lint::rules::{get_all_rules, get_recommended_rules};
1617
use ignore::overrides::OverrideBuilder;
@@ -56,7 +57,6 @@ fn lint(
5657
},
5758
None => get_recommended_rules(),
5859
})
59-
.media_type(get_media_type(Path::new(file_name.as_str())))
6060
.ignore_diagnostic_directive("eslint-disable-next-line")
6161
.build();
6262

@@ -71,7 +71,11 @@ fn lint(
7171
};
7272

7373
let (s, file_diagnostics) = linter
74-
.lint(file_name.clone(), source_string.to_owned())
74+
.lint_file(LintFileOptions {
75+
media_type: get_media_type(Path::new(file_name.as_str())),
76+
filename: file_name.clone(),
77+
source_code: source_string.to_owned(),
78+
})
7579
.map_err(|e| {
7680
Error::new(
7781
Status::GenericFailure,
@@ -171,17 +175,18 @@ fn denolint(__dirname: String, config_path: String) -> Result<bool> {
171175

172176
let linter = LinterBuilder::default()
173177
.rules(rules.clone())
174-
.media_type(get_media_type(p))
175178
.ignore_file_directive("eslint-disable")
176179
.ignore_diagnostic_directive("eslint-disable-next-line")
177180
.build();
178181
let (s, file_diagnostics) = linter
179-
.lint(
180-
p.to_str()
182+
.lint_file(LintFileOptions {
183+
source_code: file_content,
184+
filename: p
185+
.to_str()
181186
.ok_or_else(|| Error::from_reason(format!("Convert path to string failed: {:?}", &p)))?
182187
.to_owned(),
183-
file_content.clone(),
184-
)
188+
media_type: get_media_type(p),
189+
})
185190
.map_err(|e| {
186191
Error::new(
187192
Status::GenericFailure,

packages/jsonwebtoken/index.js

+14
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,20 @@ switch (platform) {
298298
}
299299
}
300300
break
301+
case 's390x':
302+
localFileExisted = existsSync(
303+
join(__dirname, 'jsonwebtoken.linux-s390x-gnu.node')
304+
)
305+
try {
306+
if (localFileExisted) {
307+
nativeBinding = require('./jsonwebtoken.linux-s390x-gnu.node')
308+
} else {
309+
nativeBinding = require('@node-rs/jsonwebtoken-linux-s390x-gnu')
310+
}
311+
} catch (e) {
312+
loadError = e
313+
}
314+
break
301315
default:
302316
throw new Error(`Unsupported architecture on Linux: ${arch}`)
303317
}

0 commit comments

Comments
 (0)