Add linting unused (#117)
... | ... | @@ -11,9 +11,10 @@ |
"build:source": "webpack --mode production", | ||
"build:zip": "web-ext build --source-dir ./build --artifacts-dir ./ --overwrite-dest", | ||
"lint:typing": "tsc --noEmit", | ||
"lint:unused": "ts-prune --error", | ||
"lint:ts": "eslint ./src", | ||
"lint:css": "stylelint ./src/**/*.css", | ||
"lint": "yarn lint:typing && yarn lint:ts && yarn lint:css", | ||
"lint": "yarn lint:typing && yarn lint:unused && yarn lint:ts && yarn lint:css", | ||
"fix": "prettier ./src -w" | ||
}, | ||
"dependencies": { | ||
... | ... | @@ -24,7 +25,6 @@ |
"@polkadot/extension-inject": "^0.43.1", | ||
"@polkadot/react-identicon": "^2.0.1", | ||
"@polkadot/react-qr": "^2.0.1", | ||
"autoprefixer": "^10.4.4", | ||
"nanostores": "^0.5.12", | ||
"react": "^18.0.0", | ||
"react-dom": "^18.0.0", | ||
... | ... | @@ -43,6 +43,7 @@ |
"@types/react-dom": "^18.0.1", | ||
"@typescript-eslint/eslint-plugin": "^5.20.0", | ||
"@typescript-eslint/parser": "^5.20.0", | ||
"autoprefixer": "^10.4.4", | ||
"babel-loader": "^8.2.5", | ||
"buffer": "^6.0.3", | ||
"copy-webpack-plugin": "^10.2.4", | ||
... | ... | @@ -63,6 +64,7 @@ |
"stylelint-config-prettier": "^9.0.3", | ||
"stylelint-config-recommended": "^7.0.0", | ||
"tailwindcss": "^3.0.24", | ||
"ts-prune": "^0.10.3", | ||
"typescript": "^4.6.3", | ||
"url-loader": "^4.1.1", | ||
"web-ext": "^6.8.0", | ||
... | ... |
This diff is collapsed.
Please register or sign in to comment