1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00

Code formatting with prettier, change eslint config for the server

This commit is contained in:
Maksim Eltyshev 2019-11-05 18:01:42 +05:00
parent bc87c1d883
commit 7a3805e64c
191 changed files with 4321 additions and 2880 deletions

View file

@ -10,41 +10,41 @@
*/
module.exports.globals = {
/****************************************************************************
* *
* Whether to expose the locally-installed Lodash as a global variable *
* (`_`), making it accessible throughout your app. *
* *
****************************************************************************/
/**
*
* Whether to expose the locally-installed Lodash as a global variable
* (`_`), making it accessible throughout your app.
*
*/
_: require('lodash'),
_: require('lodash'), // eslint-disable-line global-require
/****************************************************************************
* *
* This app was generated without a dependency on the "async" NPM package. *
* *
* > Don't worry! This is totally unrelated to JavaScript's "async/await". *
* > Your code can (and probably should) use `await` as much as possible. *
* *
****************************************************************************/
/**
*
* This app was generated without a dependency on the "async" NPM package.
*
* > Don't worry! This is totally unrelated to JavaScript's "async/await".
* > Your code can (and probably should) use `await` as much as possible.
*
*/
async: false,
/****************************************************************************
* *
* Whether to expose each of your app's models as global variables. *
* (See the link at the top of this file for more information.) *
* *
****************************************************************************/
/**
*
* Whether to expose each of your app's models as global variables.
* (See the link at the top of this file for more information.)
*
*/
models: true,
/****************************************************************************
* *
* Whether to expose the Sails app instance as a global variable (`sails`), *
* making it accessible throughout your app. *
* *
****************************************************************************/
/**
*
* Whether to expose the Sails app instance as a global variable (`sails`),
* making it accessible throughout your app.
*
*/
sails: true,
};