mirror of
https://github.com/wekan/wekan.git
synced 2025-04-21 12:37:07 -04:00
This new draft saving system is currently only implemented for the card description and comment. We need better a component inheritance/composition model to support this for all editable fields. Fixes #186
91 lines
1.8 KiB
Text
91 lines
1.8 KiB
Text
{
|
|
// 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,
|
|
"autosize": false,
|
|
"Router": false,
|
|
"SimpleSchema": false,
|
|
"getSlug": false,
|
|
"Migrations": false,
|
|
"FS": false,
|
|
"BlazeComponent": false,
|
|
"TAPi18n": false,
|
|
"T9n": false,
|
|
"SubsManager": false,
|
|
"Mousetrap": false,
|
|
"Avatar": true,
|
|
"Avatars": true,
|
|
"Ps": true,
|
|
"Presence": true,
|
|
"Presences": true,
|
|
|
|
// Our collections
|
|
"Boards": true,
|
|
"Lists": true,
|
|
"Cards": true,
|
|
"CardComments": true,
|
|
"Activities": true,
|
|
"Attachments": true,
|
|
"Users": true,
|
|
"AccountsTemplates": true,
|
|
|
|
// Our objects
|
|
"CSSEvents": true,
|
|
"EscapeActions": true,
|
|
"Filter": true,
|
|
"Filter": true,
|
|
"Mixins": true,
|
|
"Modal": true,
|
|
"MultiSelection": true,
|
|
"Popup": true,
|
|
"Sidebar": true,
|
|
"Utils": true,
|
|
"InlinedForm": true,
|
|
|
|
// XXX Temp, we should remove these
|
|
"allowIsBoardAdmin": true,
|
|
"allowIsBoardMember": true,
|
|
"Emoji": true
|
|
}
|
|
}
|