1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-08-07 22:45:26 +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

@ -8,11 +8,24 @@
"db:init": "cd db && node init.js",
"db:migrate": "knex migrate:latest --cwd db",
"db:seed": "knex seed:run --cwd db",
"format": "prettier-eslint --write \"**/*.js\"",
"lint": "eslint . --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"start": "npm run db:init && NODE_ENV=production node app.js",
"start:dev": "nodemon",
"test": "npm run lint && npm run custom-tests && echo 'Done.'"
},
"eslintConfig": {
"extends": "airbnb-base",
"globals": {
"_": true,
"sails": true
},
"rules": {
"no-param-reassign": "off",
"no-throw-literal": "off",
"no-undef": "off"
}
},
"dependencies": {
"bcrypt": "^3.0.6",
"dotenv": "^8.2.0",
@ -25,11 +38,15 @@
"sails-hook-orm": "^2.1.1",
"sails-hook-sockets": "^2.0.0",
"sails-postgresql": "^1.0.2",
"sharp": "^0.23.2"
"sharp": "^0.23.2",
"uuid": "^3.3.3"
},
"devDependencies": {
"eslint": "5.16.0",
"nodemon": "^1.19.4"
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"nodemon": "^1.19.4",
"prettier-eslint-cli": "^5.0.0"
},
"engines": {
"node": "^12.10"