-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(0.3.0): add jce jcd jct cs for es6
- Loading branch information
lqlongli(黎清龙)
committed
May 11, 2017
1 parent
f2406ae
commit dc8c56d
Showing
28 changed files
with
684 additions
and
616 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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']); | ||
}; |
Oops, something went wrong.