Skip to content

Commit

Permalink
exclude build artefacts from linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jamuhl committed Jan 26, 2019
1 parent 26a2b80 commit 442a9d5
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions package.json
Expand Up @@ -105,9 +105,16 @@
}
},
"lint-staged": {
"*.{ts,tsx,js,json,md}": [
"prettier --write",
"git add"
"linters": {
"*.{ts,tsx,js,json,md}": [
"prettier --write",
"git add"
]
},
"ignore": [
"**/dist/**/*.js",
"**/react-i18next.js",
"**/react-i18next.min.js"
]
}
}

0 comments on commit 442a9d5

Please sign in to comment.