Skip to content

Commit

Permalink
fix(stylelint): only apply to js and tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip London committed Feb 10, 2020
1 parent 2f9c6cd commit 875cafe
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,11 @@
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix",
"stylelint",
"git add"
],
"*.{js,tsx}": [
"stylelint"
],
"*.json": [
"prettier --write",
"git add"
Expand All @@ -66,7 +68,7 @@
"lint": "eslint --cache './packages/*/src/**/*.{js,ts,tsx}'",
"lint:components": "eslint './packages/blockchain-info-components/src/**/*.{js,ts,tsx}'",
"lint:core": "eslint './packages/blockchain-wallet-v4/src/**/*.{js,ts,tsx}'",
"lint:css": "stylelint './packages/*/src/**/*.{js,ts,tsx}s'",
"lint:css": "stylelint './packages/*/src/**/*.{js,tsx}'",
"lint:fix": "eslint './packages/*/src/**/*.{js,ts,tsx}' --fix",
"lint:frontend": "eslint './packages/blockchain-wallet-v4-frontend/src/**/*.{js,ts,tsx}'",
"manage:translations": "yarn workspace blockchain-wallet-v4-frontend manage:translations",
Expand Down

0 comments on commit 875cafe

Please sign in to comment.