mirror of
https://bitbucket.org/skobkin/chrome_point_plus.git
synced 2024-11-23 10:46:02 +00:00
Add jshint configs
This commit is contained in:
parent
eb32411fa7
commit
2af04fb767
9
.jshintignore
Normal file
9
.jshintignore
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
.git/**
|
||||||
|
chrome_point_plus/js/bquery_ajax.js
|
||||||
|
chrome_point_plus/js/markitup/sets/markdown/set.js
|
||||||
|
chrome_point_plus/js/point-plus.js
|
||||||
|
chrome_point_plus/vendor/**
|
||||||
|
nbproject/**
|
||||||
|
node_modules/**
|
||||||
|
publish/**
|
||||||
|
vendor/**
|
26
.jshintrc
Normal file
26
.jshintrc
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"bitwise": true,
|
||||||
|
"camelcase": false,
|
||||||
|
"curly": true,
|
||||||
|
"eqeqeq": true,
|
||||||
|
"es3": false,
|
||||||
|
"forin": true,
|
||||||
|
"freeze": true,
|
||||||
|
"latedef": true,
|
||||||
|
"maxlen": 120,
|
||||||
|
"maxparams": 4,
|
||||||
|
"newcap": true,
|
||||||
|
"noarg": true,
|
||||||
|
"noempty": true,
|
||||||
|
"nonbsp": true,
|
||||||
|
"quotmark": "single",
|
||||||
|
"shadow": "inner",
|
||||||
|
"undef": true,
|
||||||
|
"unused": true,
|
||||||
|
"browser": true,
|
||||||
|
"jquery": true,
|
||||||
|
"globals": {
|
||||||
|
"chrome": true,
|
||||||
|
"console": true
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue