Skip to content

Commit dc8c56d

Browse files
author
lqlongli(黎清龙)
committed
feat(0.3.0): add jce jcd jct cs for es6
1 parent f2406ae commit dc8c56d

28 files changed

+684
-616
lines changed

.editorconfig

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# This file is for unifying the coding style for different editors and IDEs
2-
# editorconfig.org
3-
4-
root = true
5-
6-
[*]
7-
end_of_line = lf
8-
insert_final_newline = false
9-
indent_style = tab
10-
indent_size = 4
11-
end_of_line = lf
12-
charset = utf-8
1+
# This file is for unifying the coding style for different editors and IDEs
2+
# editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
end_of_line = lf
8+
insert_final_newline = false
9+
indent_style = tab
10+
indent_size = 4
11+
end_of_line = lf
12+
charset = utf-8
1313
trim_trailing_whitespace = true

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
language: node_js
2-
node_js:
1+
language: node_js
2+
node_js:
33
- 0.10

Gruntfile.js

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
module.exports = function(grunt) {
2-
grunt.initConfig({
3-
bump: {
4-
options: {
5-
files: ['package.json'],
6-
commit: true,
7-
commitMessage: 'Release v%VERSION%',
8-
commitFiles: ['package.json'],
9-
createTag: true,
10-
tagName: '%VERSION%',
11-
tagMessage: '',
12-
push: true,
13-
pushTo: 'origin'
14-
}
15-
},
16-
17-
lintspaces: {
18-
all: {
19-
src: ['*'],
20-
options: {
21-
editorconfig: '.editorconfig'
22-
}
23-
}
24-
}
25-
});
26-
27-
grunt.loadNpmTasks('grunt-bump');
28-
grunt.loadNpmTasks('grunt-lintspaces');
29-
30-
grunt.registerTask('default', ['lintspaces']);
1+
module.exports = function(grunt) {
2+
grunt.initConfig({
3+
bump: {
4+
options: {
5+
files: ['package.json'],
6+
commit: true,
7+
commitMessage: 'Release v%VERSION%',
8+
commitFiles: ['package.json'],
9+
createTag: true,
10+
tagName: '%VERSION%',
11+
tagMessage: '',
12+
push: true,
13+
pushTo: 'origin'
14+
}
15+
},
16+
17+
lintspaces: {
18+
all: {
19+
src: ['*'],
20+
options: {
21+
editorconfig: '.editorconfig'
22+
}
23+
}
24+
}
25+
});
26+
27+
grunt.loadNpmTasks('grunt-bump');
28+
grunt.loadNpmTasks('grunt-lintspaces');
29+
30+
grunt.registerTask('default', ['lintspaces']);
3131
};

0 commit comments

Comments
 (0)