mirror of https://github.com/wekan/wekan
The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
1.7 KiB
97 lines
1.7 KiB
{
|
|
// JSHint Meteor Configuration File
|
|
// Match the Meteor Style Guide
|
|
//
|
|
// By @raix with contributions from @aldeed and @awatson1978
|
|
// Source https://github.com/raix/Meteor-jshintrc
|
|
//
|
|
// See http://jshint.com/docs/ for more details
|
|
|
|
"maxerr": 50,
|
|
"bitwise": true,
|
|
"camelcase": true,
|
|
"curly": true,
|
|
"eqeqeq": true,
|
|
"forin": true,
|
|
"immed": false,
|
|
"indent": 2,
|
|
"latedef": false,
|
|
"newcap": false,
|
|
"noarg": true,
|
|
"noempty": true,
|
|
"nonew": false,
|
|
"plusplus": false,
|
|
"quotmark": false,
|
|
"undef": true,
|
|
"unused": true,
|
|
"strict": true,
|
|
"trailing": true,
|
|
"maxparams": false,
|
|
"maxdepth": false,
|
|
"maxstatements": false,
|
|
"maxcomplexity": false,
|
|
"maxlen": 80,
|
|
"asi": false,
|
|
"boss": false,
|
|
"debug": false,
|
|
"eqnull": false,
|
|
"es5": false,
|
|
"esnext": false,
|
|
"moz": false,
|
|
"evil": false,
|
|
"expr": false,
|
|
"funcscope": false,
|
|
"globalstrict": true,
|
|
"iterator": false,
|
|
"lastsemic": false,
|
|
"laxbreak": false,
|
|
"laxcomma": false,
|
|
"loopfunc": false,
|
|
"multistr": false,
|
|
"proto": false,
|
|
"scripturl": false,
|
|
"smarttabs": false,
|
|
"shadow": false,
|
|
"sub": false,
|
|
"supernew": false,
|
|
"validthis": false,
|
|
"browser": true,
|
|
"couch": false,
|
|
"devel": true,
|
|
"dojo": false,
|
|
"jquery": false,
|
|
"mootools": false,
|
|
"node": false,
|
|
"nonstandard": false,
|
|
"prototypejs": false,
|
|
"rhino": false,
|
|
"worker": false,
|
|
"wsh": false,
|
|
"yui": false,
|
|
"nomen": false,
|
|
"onevar": false,
|
|
"passfail": false,
|
|
"white": false,
|
|
"predef": [
|
|
"Meteor",
|
|
"Accounts",
|
|
"Session",
|
|
"Template",
|
|
"check",
|
|
"Match",
|
|
"Deps",
|
|
"EJSON",
|
|
"Email",
|
|
"Package",
|
|
"Tinytest",
|
|
"Npm",
|
|
"Assets",
|
|
"Packages",
|
|
"process",
|
|
"LocalCollection",
|
|
"_",
|
|
"Random",
|
|
"HTTP",
|
|
"_methodHTTP"
|
|
]
|
|
} |