Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
littlebrown committed Aug 16, 2014
1 parent cf15063 commit b2ef330
Show file tree
Hide file tree
Showing 88 changed files with 6,620 additions and 207 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# http://editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
npm-debug.log
tmp
307 changes: 206 additions & 101 deletions .idea/workspace.xml

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"sub": true,
"undef": true,
"boss": true,
"eqnull": true,
"node": true
}
9 changes: 2 additions & 7 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,13 @@ module.exports = function (grunt) {

// Configuration to be run (and then tested).
css_cleaner: {
ui: {
custom_options: {
options: {
writeReport: "test/css-cleaner-report.txt"
writeReport: "test/tmp/css-cleaner-report.txt"
},
files: {
'tmp/scss': ['test/fixtures/**/*.*']
}


}
},

Expand All @@ -59,9 +57,6 @@ module.exports = function (grunt) {
// plugin's task(s), then test the result.
grunt.registerTask('test', ['clean', 'css_cleaner', 'nodeunit']);

// By default, lint and run all tests.
grunt.registerTask('default', ['jshint', 'test']);

// DEVELOPMENT
grunt.registerTask('dev', ['css_cleaner']);

Expand Down
1 change: 0 additions & 1 deletion node_modules/.bin/bower

This file was deleted.

145 changes: 145 additions & 0 deletions node_modules/.bin/bower

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion node_modules/.bin/grunt

This file was deleted.

45 changes: 45 additions & 0 deletions node_modules/.bin/grunt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion node_modules/.bin/yo

This file was deleted.

Loading

0 comments on commit b2ef330

Please sign in to comment.