Skip to content

Commit

Permalink
Remove CSSLint tooling from modules
Browse files Browse the repository at this point in the history
Doesn't provide enough value and inadequate plugin support (for things
like code style and not warning about variable syntax).
  • Loading branch information
necolas authored and mlnmln committed Dec 30, 2018
1 parent 7bee843 commit de66604
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 7 deletions.
2 changes: 2 additions & 0 deletions packages/generator-suit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
=== HEAD

* Remove CSSLint tooling from modules.

=== 0.2.0 (November 13, 2013)

* Add 'suit-test' to generated package's dev dependencies.
Expand Down
1 change: 0 additions & 1 deletion packages/generator-suit/lib/generators/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ util.inherits(Generator, yeoman.generators.Base);

Generator.prototype.projectFiles = function projectFiles() {
// dotfiles
this.copy('csslintrc', '.csslintrc');
this.copy('gitignore', '.gitignore');
this.copy('travis.yml', '.travis.yml');
// config files
Expand Down
2 changes: 0 additions & 2 deletions packages/generator-suit/lib/templates/app/csslintrc

This file was deleted.

4 changes: 1 addition & 3 deletions packages/generator-suit/lib/templates/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
"description": "",
"version": "0.0.0",
"devDependencies": {
"component": "*",
"csslint": ">=0.9.10"
"component": "*"
},
"scripts": {
"test": "./node_modules/.bin/csslint *.css"
}
}
1 change: 0 additions & 1 deletion packages/generator-suit/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ describe('Generator test', function () {
it('creates expected files', function (cb) {
var expected = [
// dotfiles
'.csslintrc',
'.gitignore',
'.travis.yml',
// config files
Expand Down

0 comments on commit de66604

Please sign in to comment.