Skip to content

Commit

Permalink
feat(0.3.0): add jce jcd jct cs for es6
Browse files Browse the repository at this point in the history
  • Loading branch information
lqlongli(黎清龙) committed May 11, 2017
1 parent f2406ae commit dc8c56d
Show file tree
Hide file tree
Showing 28 changed files with 684 additions and 616 deletions.
24 changes: 12 additions & 12 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# This file is for unifying the coding style for different editors and IDEs
# editorconfig.org

root = true

[*]
end_of_line = lf
insert_final_newline = false
indent_style = tab
indent_size = 4
end_of_line = lf
charset = utf-8
# This file is for unifying the coding style for different editors and IDEs
# editorconfig.org

root = true

[*]
end_of_line = lf
insert_final_newline = false
indent_style = tab
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
language: node_js
node_js:
language: node_js
node_js:
- 0.10
60 changes: 30 additions & 30 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
module.exports = function(grunt) {
grunt.initConfig({
bump: {
options: {
files: ['package.json'],
commit: true,
commitMessage: 'Release v%VERSION%',
commitFiles: ['package.json'],
createTag: true,
tagName: '%VERSION%',
tagMessage: '',
push: true,
pushTo: 'origin'
}
},

lintspaces: {
all: {
src: ['*'],
options: {
editorconfig: '.editorconfig'
}
}
}
});

grunt.loadNpmTasks('grunt-bump');
grunt.loadNpmTasks('grunt-lintspaces');

grunt.registerTask('default', ['lintspaces']);
module.exports = function(grunt) {
grunt.initConfig({
bump: {
options: {
files: ['package.json'],
commit: true,
commitMessage: 'Release v%VERSION%',
commitFiles: ['package.json'],
createTag: true,
tagName: '%VERSION%',
tagMessage: '',
push: true,
pushTo: 'origin'
}
},

lintspaces: {
all: {
src: ['*'],
options: {
editorconfig: '.editorconfig'
}
}
}
});

grunt.loadNpmTasks('grunt-bump');
grunt.loadNpmTasks('grunt-lintspaces');

grunt.registerTask('default', ['lintspaces']);
};
Loading

0 comments on commit dc8c56d

Please sign in to comment.