Skip to content
This repository was archived by the owner on Aug 24, 2022. It is now read-only.

Commit f97bc36

Browse files
author
Robert Jackson
authored
Update blueprint to use octane config (#568)
Update blueprint to use `octane` config
2 parents c8b7670 + 50fd137 commit f97bc36

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

blueprints/ember-cli-template-lint/recommended-files/.template-lintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
'use strict';
33

44
module.exports = {
5-
extends: 'recommended'
5+
extends: 'octane'
66
};

blueprints/ember-cli-template-lint/recommended-with-bare-strings-files/.template-lintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
'use strict';
33

44
module.exports = {
5-
extends: 'recommended',
5+
extends: 'octane'
66

77
rules: {
88
'no-bare-strings': true

node-tests/blueprints/ember-cli-template-lint-test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ describe('Acceptance: ember generate and destroy ember-cli-template-lint', funct
2828
yield emberNew();
2929
yield emberGenerate(args);
3030

31-
expect(file('.template-lintrc.js')).to.contain('extends: \'recommended\'');
31+
expect(file('.template-lintrc.js')).to.contain('extends: \'octane\'');
3232
}));
3333

3434
it('ember-cli-template-lint with localization framework', co.wrap(function *() {
@@ -38,7 +38,7 @@ describe('Acceptance: ember generate and destroy ember-cli-template-lint', funct
3838
yield emberNew();
3939
yield emberGenerate(args);
4040

41-
expect(file('.template-lintrc.js')).to.contain('extends: \'recommended\'');
41+
expect(file('.template-lintrc.js')).to.contain('extends: \'octane\'');
4242
expect(file('.template-lintrc.js')).to.contain('\'no-bare-strings\': true');
4343
}));
4444
});

0 commit comments

Comments
 (0)