Erik James

Results 9 comments of Erik James

@vinitshahdeo

I just had this same issue, except my rule was missing the `:` and still said it was invalid, until I went to deploy my changes and the whole site...

This is fixed. Turns out I needed to change the link for loading the 'ace' library within the `load_ace()` function from `http:` to `https:`

👍 Can you just export the `store` object that is created so that we could access it from `session.store` and allow the ability to use all the methods associated with...

+1 I was just trying to use @import in the `resume.css` file and noticed that it doesn't get expanded, just added into the CSS.

I believe this comes from Bootstrap 4 functionality with inputs: https://bootstrap-vue.js.org/docs/components/form-input It gives a way to perform validation against the input

Yeah, sorry that should have been `jshint` I can post the end of my `gruntfile.js` ``` grunt.loadNpmTasks('grunt-contrib-csslint'); grunt.loadNpmTasks('grunt-contrib-jshint'); grunt.loadNpmTasks('grunt-contrib-watch'); grunt.loadNpmTasks('grunt-newer'); grunt.registerTask('default', ['newer:csslint', 'newer:jshint']); ``` I use the template syntax because...