mirror of
https://github.com/haskell-actions/run-ormolu.git
synced 2024-11-25 23:12:09 +03:00
Allow to pass extra arguments to Ormolu
This commit is contained in:
parent
04134d97eb
commit
31843198af
12
dist/index.js
vendored
12
dist/index.js
vendored
@ -67,12 +67,22 @@ async function run() {
|
||||
);
|
||||
const files = await globber.glob();
|
||||
|
||||
// Extra args
|
||||
|
||||
var extra_args = [];
|
||||
|
||||
if (input_extra_args) {
|
||||
extra_args = input_extra_args.split(' ');
|
||||
}
|
||||
|
||||
// Run ormolu
|
||||
|
||||
await exec.exec(ormolu_cached_path, ['--version']);
|
||||
await exec.exec(
|
||||
ormolu_cached_path,
|
||||
['--color', 'always', '--check-idempotence', '--mode', 'check'].concat(files)
|
||||
['--color', 'always', '--check-idempotence', '--mode', 'check']
|
||||
.concat(extra_args)
|
||||
.concat(files)
|
||||
);
|
||||
|
||||
} catch (error) {
|
||||
|
12
index.js
12
index.js
@ -56,12 +56,22 @@ async function run() {
|
||||
);
|
||||
const files = await globber.glob();
|
||||
|
||||
// Extra args
|
||||
|
||||
var extra_args = [];
|
||||
|
||||
if (input_extra_args) {
|
||||
extra_args = input_extra_args.split(' ');
|
||||
}
|
||||
|
||||
// Run ormolu
|
||||
|
||||
await exec.exec(ormolu_cached_path, ['--version']);
|
||||
await exec.exec(
|
||||
ormolu_cached_path,
|
||||
['--color', 'always', '--check-idempotence', '--mode', 'check'].concat(files)
|
||||
['--color', 'always', '--check-idempotence', '--mode', 'check']
|
||||
.concat(extra_args)
|
||||
.concat(files)
|
||||
);
|
||||
|
||||
} catch (error) {
|
||||
|
Loading…
Reference in New Issue
Block a user