Fix lint
This commit is contained in:
parent
28e210237d
commit
5336e189be
5 changed files with 8 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"extends": "./node_modules/eslint-config/.eslintrc",
|
"extends": "eslint-config-dabapps/base/.eslintrc",
|
||||||
"globals": {
|
"globals": {
|
||||||
$: true
|
"$": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,8 +27,7 @@
|
||||||
"autoprefixer": "=6.5.0",
|
"autoprefixer": "=6.5.0",
|
||||||
"browserify": "=13.1.0",
|
"browserify": "=13.1.0",
|
||||||
"clean-css": "=3.4.20",
|
"clean-css": "=3.4.20",
|
||||||
"eslint": "=1.5.0",
|
"eslint-config": "git://github.com/dabapps/eslint-config.git#2.0.4",
|
||||||
"eslint-config": "git://github.com/dabapps/eslint-config.git#1.1.4",
|
|
||||||
"markdown-spellcheck": "=0.11.0",
|
"markdown-spellcheck": "=0.11.0",
|
||||||
"node-sass": "=3.8.0",
|
"node-sass": "=3.8.0",
|
||||||
"nsp": "=2.6.1",
|
"nsp": "=2.6.1",
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
'use strict';
|
||||||
|
|
||||||
require('./creative');
|
require('./creative');
|
||||||
var ansi_up = require('ansi_up');
|
var ansi_up = require('ansi_up');
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
* Code licensed under the Apache License v2.0.
|
* Code licensed under the Apache License v2.0.
|
||||||
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
|
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
|
||||||
*/
|
*/
|
||||||
|
'use strict';
|
||||||
|
|
||||||
// jQuery for page scrolling feature - requires jQuery Easing plugin
|
// jQuery for page scrolling feature - requires jQuery Easing plugin
|
||||||
$('a.page-scroll').bind('click', function(event) {
|
$('a.page-scroll').bind('click', function(event) {
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
'use strict';
|
||||||
|
|
||||||
require('jquery.easing');
|
require('jquery.easing');
|
||||||
require('./creative');
|
require('./creative');
|
||||||
|
|
||||||
|
|
Reference in a new issue