sibelius
9/5/2018 - 10:27 PM

Lint Staged config to handle both .js and .ts files

Lint Staged config to handle both .js and .ts files

"lint-staged": {
    "*.js": [
      "yarn prettier",
      "eslint --fix",
      "git add"
    ],
    "*.ts": [
      "yarn prettier",
      "eslint --fix",
      "git add"
    ]
  },