About 51 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. O que significa executar lint no código? - Stack Overflow em Português

    Sep 19, 2018 · Vi essa expressão "lint code" em alguns lugares, na IDE do Visual Studio e também ao executar o NG CLI, o cliente do Angular. O que isso significa? O que exatamente …

  3. 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 globally ignore specific …

  4. c - 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.

  5. 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 change the way javac lints.

  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. .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-have tools that...

  8. lint - Real-time linting of C code - Stack Overflow

    Jul 6, 2012 · I am looking for something similar to the JavaScript linting tools JSHint or JSLint for C. My text editor (Sublime Text 2) has a JSHint pluggin that gives me real time feedback to my JavaScript …

  9. 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 ." So after …

  10. Are there any lint tools for C and C++ that check formatting?

    Aug 2, 2016 · Is there any standard lint tool that checks that code is properly formatted, but doesn't actually change it (like indent but that returns only errors and warnings)? While this question could be …