Skip to content

Commit 141bf36

Browse files
author
hirsch88
committed
Create tslint function
1 parent 9c0b458 commit 141bf36

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

package-scripts.js

+8-4
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ module.exports = {
6969
'nps test.unit.pretest',
7070
'nps test.unit.run'
7171
),
72-
pretest: 'tslint -c ./tslint.json -t stylish ./test/unit/**/*.ts',
72+
pretest: tslint(`./test/unit/**.ts`),
7373
run: 'cross-env NODE_ENV=test jest --testPathPattern=unit',
7474
verbose: 'nps "test --verbose"',
7575
coverage: 'nps "test --coverage"'
@@ -80,7 +80,7 @@ module.exports = {
8080
'nps test.integration.pretest',
8181
'nps test.integration.run'
8282
),
83-
pretest: 'tslint -c ./tslint.json -t stylish ./test/integration/**/*.ts',
83+
pretest: tslint(`./test/integration/**.ts`),
8484
verbose: 'nps "test.integration --verbose"',
8585
// -i. Run all tests serially in the current process, rather than creating a worker pool of child processes that run tests. This can be useful for debugging.
8686
run: 'cross-env NODE_ENV=test jest --testPathPattern=integration -i',
@@ -91,7 +91,7 @@ module.exports = {
9191
'nps test.e2e.pretest',
9292
'nps test.e2e.run'
9393
),
94-
pretest: 'tslint -c ./tslint.json -t stylish ./test/e2e/**/*.ts',
94+
pretest: tslint(`./test/e2e/**.ts`),
9595
verbose: 'nps "test.e2e --verbose"',
9696
// -i. Run all tests serially in the current process, rather than creating a worker pool of child processes that run tests. This can be useful for debugging.
9797
run: 'cross-env NODE_ENV=test jest --testPathPattern=e2e -i',
@@ -100,7 +100,7 @@ module.exports = {
100100
/**
101101
* Runs TSLint over your project
102102
*/
103-
lint: `tslint -c ./tslint.json -p tsconfig.json src/**/*.ts --format stylish`,
103+
lint: tslint(`./src/**/*.ts`),
104104
/**
105105
* Transpile your app into javascript
106106
*/
@@ -168,3 +168,7 @@ function run(path) {
168168
function runFast(path) {
169169
return run(`-F ${path}`);
170170
}
171+
172+
function tslint(path) {
173+
return `tslint -c './tslint.json' '${path}' --format stylish`;
174+
}

0 commit comments

Comments
 (0)