Skip to content
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.

Commit

Permalink
fix(lint): used my fork of travis-lint
Browse files Browse the repository at this point in the history
that will print the error
  • Loading branch information
travi committed May 18, 2020
1 parent 3e48214 commit 5f8d5df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/scaffolder-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ suite('travis', () => {
projectType
}),
{
devDependencies: ['travis-lint'],
devDependencies: ['@travi/travis-lint'],
scripts: {'lint:travis': 'travis-lint .travis.yml'},
badges: {
status: {
Expand All @@ -57,7 +57,7 @@ suite('travis', () => {
test('that a badge is not defined and coverage is not reported for a private project', async () => assert.deepEqual(
await scaffold({projectRoot, vcs, visibility: 'Private'}),
{
devDependencies: ['travis-lint'],
devDependencies: ['@travi/travis-lint'],
scripts: {'lint:travis': 'travis-lint .travis.yml'},
badges: {status: {}},
nextSteps: [{summary: `Add Travis-CI badge from https://travis-ci.com/${vcs.owner}/${vcs.name} to README.md`}]
Expand Down
2 changes: 1 addition & 1 deletion src/scaffolder.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default async function ({projectRoot, vcs, visibility, projectType, tests
await scaffoldConfigFile(projectRoot, projectType, visibility, tests, vcs.owner);

return {
devDependencies: ['travis-lint'],
devDependencies: ['@travi/travis-lint'],
scripts: {'lint:travis': 'travis-lint .travis.yml'},
badges: {
status: {
Expand Down

0 comments on commit 5f8d5df

Please sign in to comment.