Skip to content

Commit

Permalink
Remove unused files
Browse files Browse the repository at this point in the history
We don't use ESlint anymore, nor do we need Babel either because of the
new changes to our gulpfile.
  • Loading branch information
sondr3 committed May 23, 2016
1 parent 830b5df commit a78b9cc
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 36 deletions.
10 changes: 0 additions & 10 deletions generators/boilerplate/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,5 @@ module.exports = generators.Base.extend({
this.templatePath('gitignore'),
this.destinationPath('.gitignore')
);

this.fs.copy(
this.templatePath('eslintrc'),
this.destinationPath('.eslintrc')
);

this.fs.copy(
this.templatePath('babelrc'),
this.destinationPath('.babelrc')
);
}
});
3 changes: 0 additions & 3 deletions generators/boilerplate/templates/babelrc

This file was deleted.

14 changes: 0 additions & 14 deletions generators/boilerplate/templates/eslintrc

This file was deleted.

5 changes: 0 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,6 @@
},
"xo": {
"space": true,
"globals": [
"describe",
"before",
"it"
],
"ignores": [
"generators/app/templates/**",
"generators/boilerplate/templates/**",
Expand Down
4 changes: 0 additions & 4 deletions test/boilerplate.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@ test('creates .gitattributes', () => {
assert.file('.gitattributes');
});

test('creates .babelrc', () => {
assert.file('.babelrc');
});

test('creates README.md', () => {
assert.file('README.md');
});
Expand Down

0 comments on commit a78b9cc

Please sign in to comment.