1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-12 03:16:48 +02:00

Added jshint rules

This commit is contained in:
Max Guglielmi 2015-07-25 18:33:21 +10:00
parent 585463d18a
commit 3ebf7cf11f
5 changed files with 8 additions and 5 deletions

View file

@ -7,5 +7,8 @@
"es3": true,
"esnext": true,
"unused": true,
"maxlen" : 80
"maxlen" : 80,
"trailing": true,
"quotmark": "single",
"immed": true
}

View file

@ -1,6 +1,6 @@
/**
* TableFilter v0.0.0 by Max Guglielmi
* build date: 2015-07-20T08:11:50.564Z
* build date: 2015-07-25T08:31:07.539Z
* MIT License
*/

View file

@ -1,6 +1,6 @@
/**
* TableFilter v0.0.0 by Max Guglielmi
* build date: 2015-07-20T08:11:50.564Z
* build date: 2015-07-25T08:31:07.539Z
* MIT License
*/

View file

@ -72,7 +72,7 @@ export default {
ele.className = cls;
}
else if(!this.hasClass(ele, cls)){
ele.className += " " + cls;
ele.className += ' ' + cls;
}
},

View file

@ -1,7 +1,7 @@
var webpack = require('webpack');
var path = require('path');
var Clean = require('clean-webpack-plugin');
var StringReplacePlugin = require("string-replace-webpack-plugin");
var StringReplacePlugin = require('string-replace-webpack-plugin');
var fs = require('fs');
var pkg = JSON.parse(fs.readFileSync('package.json', 'utf8'));