-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
index.jade
file fails to compile in npm run dev
#385
Comments
|
Guess I shouldn't have abbreviated that part of the output! Here's ± % grunt jscs:grunt !10645
Running "jscs:grunt" (jscs) task
Expected indentation of 8 characters at gruntfile.js :
35 | },
36 | home: {
37 | options: {
----------------^
38 | css: [
39 | 'dist/styles/marionette.css'
Expected indentation of 10 characters at gruntfile.js :
36 | home: {
37 | options: {
38 | css: [
------------------^
39 | 'dist/styles/marionette.css'
40 | ]
Expected indentation of 8 characters at gruntfile.js :
39 | 'dist/styles/marionette.css'
40 | ]
41 | },
----------------^
42 | src: 'dist/index.html',
43 | dest: 'dist/index.html'
Expected indentation of 8 characters at gruntfile.js :
40 | ]
41 | },
42 | src: 'dist/index.html',
----------------^
43 | dest: 'dist/index.html'
44 | },
Expected indentation of 8 characters at gruntfile.js :
41 | },
42 | src: 'dist/index.html',
43 | dest: 'dist/index.html'
----------------^
44 | },
45 | inspector: {
Expected indentation of 8 characters at gruntfile.js :
44 | },
45 | inspector: {
46 | options: {
----------------^
47 | css: [
48 | 'dist/styles/inspector.css'
Expected indentation of 8 characters at gruntfile.js :
49 | ]
50 | },
51 | src: 'dist/inspector/index.html',
----------------^
52 | dest: 'dist/inspector/index.html'
53 | }
Expected indentation of 8 characters at gruntfile.js :
50 | },
51 | src: 'dist/inspector/index.html',
52 | dest: 'dist/inspector/index.html'
----------------^
53 | }
54 | },
>> 8 code style errors found!
Warning: Task "jscs:grunt" failed. Use --force to continue.
Aborted due to warnings. |
I thought maybe running this with |
For some weird reason your local branch seems to be out of sync of master branch:
|
Could there be something else wrong? ± % git pull origin master !10649
From https://github.com/marionettejs/marionettejs.com
* branch master -> FETCH_HEAD
Already up-to-date.
nick@navicans-MacBook-Pro ~/git/marionettejs.com [master]
± % grunt jscs:grunt !10650
Running "jscs:grunt" (jscs) task
Expected indentation of 8 characters at gruntfile.js :
35 | },
36 | home: {
37 | options: {
----------------^
38 | css: [
39 | 'dist/styles/marionette.css'
Expected indentation of 10 characters at gruntfile.js :
36 | home: {
37 | options: {
38 | css: [
------------------^
39 | 'dist/styles/marionette.css'
40 | ]
Expected indentation of 8 characters at gruntfile.js :
39 | 'dist/styles/marionette.css'
40 | ]
41 | },
----------------^
42 | src: 'dist/index.html',
43 | dest: 'dist/index.html'
Expected indentation of 8 characters at gruntfile.js :
40 | ]
41 | },
42 | src: 'dist/index.html',
----------------^
43 | dest: 'dist/index.html'
44 | },
Expected indentation of 8 characters at gruntfile.js :
41 | },
42 | src: 'dist/index.html',
43 | dest: 'dist/index.html'
----------------^
44 | },
45 | inspector: {
Expected indentation of 8 characters at gruntfile.js :
44 | },
45 | inspector: {
46 | options: {
----------------^
47 | css: [
48 | 'dist/styles/inspector.css'
Expected indentation of 8 characters at gruntfile.js :
49 | ]
50 | },
51 | src: 'dist/inspector/index.html',
----------------^
52 | dest: 'dist/inspector/index.html'
53 | }
Expected indentation of 8 characters at gruntfile.js :
50 | },
51 | src: 'dist/inspector/index.html',
52 | dest: 'dist/inspector/index.html'
----------------^
53 | }
54 | },
>> 8 code style errors found!
Warning: Task "jscs:grunt" failed. Use --force to continue.
Aborted due to warnings. |
Fix code linting after deps update. Closes #385 Verified locally as Travis task failed again.
@thenickcox fixed and merged. If you fetch update and rebase, everything should be ok. |
@peterblazejewicz Worked like a charm! ± % grunt jscs:grunt !10662
Running "jscs:grunt" (jscs) task
>> 1 files without code style errors.
Done, without errors. |
On node 0.10.16:
The text was updated successfully, but these errors were encountered: