summaryrefslogtreecommitdiffstats
path: root/.eslintrc
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade ESLint to v2Maxime Quandalle2016-03-171-129/+0
| | | | This commit also tweak the code style following backward-incompatible v2 rules.
* Change the board import layout from a popup to a full pageMaxime Quandalle2016-01-311-1/+0
| | | | | | | | This commit also removes the “import a single Trello card” as we couldn’t figure out some reasonable use case. We also create a new publication on the server to provide the minimal user profile informations required to display an avatar.
* Add notification, allow watch boards / lists / cardsLiming Xie2016-01-051-0/+1
|
* Force new lines at the end of filesMaxime Quandalle2015-12-301-0/+1
|
* Forbid trailing spacesMaxime Quandalle2015-12-301-0/+1
|
* Partially revert aae5030Maxime Quandalle2015-12-241-36/+28
| | | | | | | As discussed in #370 and announced in the official Eslint-meteor plugin repository (https://github.com/dferber90/eslint-plugin-meteor), it is recommended to not use this plugin anymore has the author has it is currently broken and the author has abandoned it.
* Implement fast-renderMaxime Quandalle2015-10-301-0/+1
| | | | | | This required updating 3stack:presence because of the following bug: https://github.com/3stack-software/meteor-presence/pull/3
* Enable more ESLint-plugin-Meteor rulesDominik Ferber2015-10-271-3/+7
|
* Add eslint-plugin-meteorDominik Ferber2015-10-271-39/+34
| | | | | | | | Add rules for eslint-plugin-meteor. Use local version of eslint and eslint-plugin-meteor, instead of relying on global versions. Ensures consistent versions of eslint and eslint-plugin-meteor for all developers.
* Display the board name in the page titleMaxime Quandalle2015-10-221-0/+1
| | | | Fixes #364
* Add some ESLint rules and fix some related issuesMaxime Quandalle2015-10-141-26/+32
|
* Add some passing ESlint rulesMaxime Quandalle2015-09-081-66/+35
|
* Centralize all mutations at the model levelMaxime Quandalle2015-09-081-0/+1
| | | | | | | | | | | | | | | This commit uses a new package that I need to document. It tries to solve the long-standing debate in the Meteor community about allow/deny rules versus methods (RPC). This approach gives us both the centralized security rules of allow/deny and the white-list of allowed mutations similarly to Meteor methods. The idea to have static mutation descriptions is also inspired by Facebook's Relay/GraphQL. This will allow the development of a REST API using the high-level methods instead of the MongoDB queries to do the mapping between the HTTP requests and our collections.
* Show avatars in search resultsMaxime Quandalle2015-09-061-0/+1
| | | | Fixes #265
* Change our presence packageMaxime Quandalle2015-09-041-1/+1
| | | | | | | | | tmeasday:presence was doing unnecessary ping calls to the server every 5 seconds instead of using the status of the DDP connection (this could save a fair amount of traffic in case of important server load). I guess this change also fixes #221, but since no issue reproduction was provided, it's difficult to tell.
* Enforce a consistent ES6 coding styleMaxime Quandalle2015-09-031-0/+157
Replace the old (and broken) jshint + jscsrc by eslint and configure it to support some of the ES6 features. The command `eslint` currently has one error which is a bug that was discovered by its static analysis and should be fixed (usage of a dead object).