About 14,800,000 results
Open links in new tab
  1. lint - What is "Linting"? - Stack Overflow

    Dec 14, 2011 · PHPLint, JSLint, and I recently came across "you can lint your JS code on the fly" while reading something about some IDE. So, what is "linting"?

  2. ansible-lint: Is there a way to ignore errors in all files, without ...

    Mar 28, 2025 · There are several options to adopt ansible-lint in a large codebase without immediately fixing all existing issues. You can configure a .ansible-lint file using skip_list to …

  3. How do I download and install lint? - Stack Overflow

    Jul 30, 2011 · Does anyone know how to obtain lint for Mac, Windows, and Linux? sudo port install lint can't find it.

  4. What is the meaning of "lint" in the command -Xlint=unchecked?

    Jan 27, 2014 · 3 "Lint" refers to the process of analyzing source code to locate common programming mistakes, unsafe coding practices, or the like. Options that begin with -Xlint …

  5. Automatically fix lint problems only on a specific file

    Jul 6, 2018 · I am running npm run lint -- --fix from command line to automatically fix lint errors, but this command creates fixes on the entire project. I've been searching the documentation to …

  6. Why does Ruff not show as many diagnostics as I expect?

    Jan 21, 2024 · [tool.ruff.lint] select = ["ALL"] [tool.ruff] line-length = 120 I also needed to restart the ruff server for this to take effect.

  7. lint-staged not running on precommit - Stack Overflow

    Apr 26, 2018 · It could be that lint-staged is actually running but your files have no lint errors at all. If your files only have warnings, the pre-commit hook will not do anything and lets you commit.

  8. How to setup lint-staged for Vue projects? - Stack Overflow

    Dec 27, 2021 · I created a new Vue3 app using the Vue CLI and selected Prettier for my linter config. I want to use commitlint, husky and lint-staged to validate commit messages and lint …

  9. .net - What linters are there for C#? - Stack Overflow

    Jan 5, 2023 · Is there a lint-like tool for C#? I've got the compiler to flag warnings-as-errors, and I've got Stylecop, but these only catch the most egregious errors. Are there any other must …

  10. How to run eslint --fix from npm script - Stack Overflow

    To add a new separate script to auto-fix the linting issues for files with extensions .js and .jsx, you may add the add the script in your package.json as below: "lint:fix": "eslint --fix --ext .js,.jsx ." …