Skip to content

Commit fbbd0bd

Browse files
committed
feat: added @matrixai/lint package and removed old linting elements, ran linting with new js-lint
1 parent a8ede88 commit fbbd0bd

File tree

4 files changed

+3085
-1348
lines changed

4 files changed

+3085
-1348
lines changed

.eslintrc

-184
This file was deleted.

README.md

+3-10
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,9 @@ exec can be used in the following way.
1515
```ts
1616
import { exec } from '@matrixai/exec';
1717
// This should output the current enviroment while adding `test_env` to it.
18-
exec.execvp(
19-
'node',
20-
[
21-
'-e',
22-
'console.log(process.env)',
23-
],
24-
{
25-
test_env: 'this value'
26-
},
27-
);
18+
exec.execvp('node', ['-e', 'console.log(process.env)'], {
19+
test_env: 'this value',
20+
});
2821
```
2922

3023
Note that only linux and mac platforms are supported.

0 commit comments

Comments
 (0)