question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[Question] How to migrate ignore

See original GitHub issue

The new version uses the simple format over the advanced format.

This means this configuration:

"lint-staged": {
  "linters": {
    "*.js": [
      "prettier-standard",
      "git add"
    ],
    "package.json": [
      "finepack",
      "git add"
    ]
  },
  "ignore": [
    "static/*.{js, css}"
  ]
}

Should be written like:

"lint-staged": {
  "*.js": [
    "prettier-standard",
    "git add"
  ],
  "package.json": [
    "finepack",
    "git add"
  ]
}

The thing that’s no clear to me is, then, how I can ignore files there?

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:7 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
iirojcommented, Jul 5, 2019

Oh sorry, I read prettier-standard and interpreted it as prettier.

0reactions
okonetcommented, Jul 6, 2019

Yes! It’s definitely doesn’t belong to this package IMO.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Ignore specific migration files - Laracasts
Ignore specific migration files. Is there a way to let laravel know to ignore specific migration files? The reason I ask is because...
Read more >
How to ignore a specific migration? - django - Stack Overflow
My problem is that each time I run a " makemigrations " Django adds again the migration (= the one on the top...
Read more >
Common questions about the Migration and modernization tool
Get answers to common questions about using Migration and modernization to migrate machines.
Read more >
New option for migrations continue-on-failure #40727 - GitHub
First, there is an up method and down one in the migration class. The up is for creating the table / columns and...
Read more >
Skip Logic - Qualtrics
Skip logic allows you to send respondents to a future point in the survey based on how they answer a question. For instance,...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found