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.
83 lines
1.6 KiB
83 lines
1.6 KiB
{
|
|
// JSHint options: http://jshint.com/docs/options/
|
|
"maxerr": 50,
|
|
|
|
// Enforcing
|
|
"camelcase": true,
|
|
"eqeqeq": true,
|
|
"undef": true,
|
|
"unused": true,
|
|
|
|
// Environments
|
|
"browser": true,
|
|
"devel": true,
|
|
|
|
// Authorized globals
|
|
"globals": {
|
|
// Meteor globals
|
|
"Meteor": false,
|
|
"DDP": false,
|
|
"Mongo": false,
|
|
"Session": false,
|
|
"Accounts": false,
|
|
"Template": false,
|
|
"Blaze": false,
|
|
"UI": false,
|
|
"Match": false,
|
|
"check": false,
|
|
"Tracker": false,
|
|
"Deps": false,
|
|
"ReactiveVar": false,
|
|
"EJSON": false,
|
|
"HTTP": false,
|
|
"Email": false,
|
|
"Assets": false,
|
|
"Handlebars": false,
|
|
"Package": false,
|
|
"App": false,
|
|
"Npm": false,
|
|
"Tinytest": false,
|
|
"Random": false,
|
|
"HTML": false,
|
|
|
|
// Exported by packages we use
|
|
"_": false,
|
|
"$": false,
|
|
"Router": false,
|
|
"SimpleSchema": false,
|
|
"getSlug": false,
|
|
"Migrations": false,
|
|
"FS": false,
|
|
"BlazeComponent": false,
|
|
"TAPi18n": false,
|
|
"T9n": false,
|
|
"SubsManager": false,
|
|
"Mousetrap": false,
|
|
"Avatar": true,
|
|
"Ps": true,
|
|
|
|
// Our collections
|
|
"Boards": true,
|
|
"Lists": true,
|
|
"Cards": true,
|
|
"CardComments": true,
|
|
"Activities": true,
|
|
"Attachments": true,
|
|
"Users": true,
|
|
"AccountsTemplates": true,
|
|
|
|
// Our objects
|
|
"EscapeActions": true,
|
|
"Filter": true,
|
|
"Mixins": true,
|
|
"Popup": true,
|
|
"Filter": true,
|
|
"Sidebar": true,
|
|
"Utils": true,
|
|
|
|
// XXX Temp, we should remove these
|
|
"allowIsBoardAdmin": true,
|
|
"allowIsBoardMember": true,
|
|
"Emoji": true
|
|
}
|
|
}
|
|
|