- run eslint --fix across project

This commit is contained in:
Amruth Pillai
2020-07-09 00:14:13 +05:30
parent a1931f5e36
commit 9045e2983d
72 changed files with 1392 additions and 868 deletions
+15 -1
View File
@@ -5,6 +5,8 @@
"version": "2.0.0",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
@@ -15,8 +17,10 @@
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@reach/router": "^1.3.4",
"array-move": "^2.2.2",
"classnames": "^2.2.6",
"dotenv": "^8.2.0",
"firebase": "^7.15.5",
"formik": "^2.1.4",
"gatsby": "^2.23.22",
@@ -33,7 +37,7 @@
"gatsby-source-filesystem": "^2.3.18",
"gatsby-source-gravatar": "^1.0.0",
"gatsby-transformer-sharp": "^2.5.10",
"lodash": "^4.17.17",
"lodash": "^4.17.19",
"moment": "^2.27.0",
"nanoevents": "^5.1.8",
"react": "^16.13.1",
@@ -46,6 +50,16 @@
"yup": "^0.29.1"
},
"devDependencies": {
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"gatsby-plugin-eslint": "^2.0.8",
"mini-css-extract-plugin": "^0.9.0",
"prettier": "2.0.5",
"tailwindcss": "^1.4.6"
},