1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-08-08 06:55:30 +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

@ -4,6 +4,7 @@
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"format": "prettier-eslint --write \"src/**/*.*(js|jsx)\"",
"lint": "eslint --ext js,jsx src",
"start": "react-scripts start",
"test": "react-scripts test"
@ -64,6 +65,12 @@
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"eslint-config-airbnb": "^18.0.1"
"eslint": "^5.16.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"prettier-eslint-cli": "^5.0.0"
}
}