Skip to content
This repository was archived by the owner on Mar 26, 2018. It is now read-only.

Commit f407573

Browse files
committed
feat(gen): add jscs
Added jscs to replace styling rules deprecated by jshint. Details can be found here regarding the rules that were previously used by this generator: #1086 Jscs rule descriptions can be found here: http://jscs.info/rules.html Closes #1109
1 parent 7804182 commit f407573

File tree

6 files changed

+36
-6
lines changed

6 files changed

+36
-6
lines changed

common/index.js

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ Generator.prototype.setupEnv = function setupEnv() {
1616
this.sourceRoot(join(__dirname, '../templates/common/root'));
1717
this.copy('.editorconfig');
1818
this.copy('.gitattributes');
19+
if (!this.env.options.coffee) {
20+
this.copy('.jscsrc');
21+
}
1922
this.copy('.jshintrc');
2023
this.copy('.yo-rc.json');
2124
this.copy('gitignore', '.gitignore');

templates/common/root/.jscsrc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"requireCamelCaseOrUpperCaseIdentifiers": true,
3+
"requireCapitalizedConstructors": true,
4+
"requireParenthesesAroundIIFE": true,
5+
"validateQuoteMarks": "'"
6+
}

templates/common/root/_Gruntfile.js

+23-5
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ module.exports = function (grunt) {
4747
},<% } else { %>
4848
js: {
4949
files: ['<%%= yeoman.app %>/scripts/{,*/}*.js'],
50-
tasks: ['newer:jshint:all'],
50+
tasks: ['newer:jshint:all', 'newer:jscs:all'],
5151
options: {
5252
livereload: '<%%= connect.options.livereload %>'
5353
}
5454
},
5555
jsTest: {
5656
files: ['test/spec/{,*/}*.js'],
57-
tasks: ['newer:jshint:test', 'karma']
57+
tasks: ['newer:jshint:test', 'newer:jscs:test', 'karma']
5858
},<% } %><% if (compass) { %>
5959
compass: {
6060
files: ['<%%= yeoman.app %>/styles/{,*/}*.{scss,sass}'],
@@ -131,7 +131,7 @@ module.exports = function (grunt) {
131131
}
132132
},
133133

134-
// Make sure code styles are up to par and there are no obvious mistakes
134+
// Make sure there are no obvious mistakes
135135
jshint: {
136136
options: {
137137
jshintrc: '.jshintrc',
@@ -151,7 +151,24 @@ module.exports = function (grunt) {
151151
}<% } %>
152152
},
153153

154-
// Empties folders to start fresh
154+
<% if (!coffee) { %>// Make sure code styles are up to par
155+
jscs: {
156+
options: {
157+
config: '.jscsrc',
158+
verbose: true
159+
},
160+
all: {
161+
src: [
162+
'Gruntfile.js',
163+
'<%%= yeoman.app %>/scripts/{,*/}*.js'
164+
]
165+
},
166+
test: {
167+
src: ['test/spec/{,*/}*.js']
168+
}
169+
},
170+
171+
<% } %>// Empties folders to start fresh
155172
clean: {
156173
dist: {
157174
files: [{
@@ -556,7 +573,8 @@ module.exports = function (grunt) {
556573
]);
557574

558575
grunt.registerTask('default', [
559-
'newer:jshint',
576+
'newer:jshint',<% if (!coffee) { %>
577+
'newer:jscs',<% } %>
560578
'test',
561579
'build'
562580
]);

templates/common/root/_package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"grunt-contrib-uglify": "^0.7.0",
2020
"grunt-contrib-watch": "^0.6.1",
2121
"grunt-filerev": "^2.1.2",
22-
"grunt-google-cdn": "^0.4.3",
22+
"grunt-google-cdn": "^0.4.3",<% if (!coffee) { %>
23+
"grunt-jscs": "^1.8.0",<% } %>
2324
"grunt-newer": "^1.1.0",
2425
"grunt-ng-annotate": "^0.9.2",
2526
"grunt-svgmin": "^2.0.0",

test/test-apppath.js

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ describe('Angular generator appPath option', function () {
7171
it('creates expected JS files', function (done) {
7272
angular.run({}, function() {
7373
helpers.assertFile([].concat(expected, [
74+
'.jscsrc',
7475
appPath + '/scripts/app.js',
7576
appPath + '/scripts/controllers/main.js',
7677
'test/spec/controllers/main.js'

test/test-file-creation.js

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ describe('Angular generator file creation', function () {
6969
it('creates expected JS files', function (done) {
7070
angular.run({}, function() {
7171
helpers.assertFile([].concat(expected, [
72+
'.jscsrc',
7273
'app/scripts/app.js',
7374
'app/scripts/controllers/main.js',
7475
'test/spec/controllers/main.js'

0 commit comments

Comments
 (0)