diff --git a/lint-staged.config.js b/lint-staged.config.js new file mode 100644 index 0000000..352b3a8 --- /dev/null +++ b/lint-staged.config.js @@ -0,0 +1,3 @@ +module.exports = { + "*.{js,jsx,ts,tsx}": "run-s check:* lint" +}; diff --git a/package.json b/package.json index 804919c..7f6c3e3 100644 --- a/package.json +++ b/package.json @@ -119,10 +119,5 @@ "typedoc": "^0.15.0", "typedoc-plugin-markdown": "^2.1.0", "typescript": "3.5.3" - }, - "lint-staged": { - "*.{js,jsx,ts,tsx}": [ - "run-s check:* lint" - ] } }