#rust #awesome_list #code_quality #linter #static_analysis #static_analyzers #static_code_analysis
https://github.com/analysis-tools-dev/static-analysis
https://github.com/analysis-tools-dev/static-analysis
GitHub
GitHub - analysis-tools-dev/static-analysis: ⚙️ A curated list of static analysis (SAST) tools and linters for all programming…
⚙️ A curated list of static analysis (SAST) tools and linters for all programming languages, config files, build tools, and more. The focus is on tools which improve code quality. - analysis-tools-...
#rust #hacktoberfest #javascript #javascript_linter #linter #parallel #parser
https://github.com/RDambrosio016/RSLint
https://github.com/RDambrosio016/RSLint
GitHub
GitHub - rslint/rslint: A (WIP) Extremely fast JavaScript and TypeScript linter and Rust crate
A (WIP) Extremely fast JavaScript and TypeScript linter and Rust crate - GitHub - rslint/rslint: A (WIP) Extremely fast JavaScript and TypeScript linter and Rust crate
#python #auto_formatter #cleaner #cli #formatter #hacktoberfest #isort #linter #python_utility #python3 #sorting_imports
https://github.com/PyCQA/isort
https://github.com/PyCQA/isort
GitHub
GitHub - PyCQA/isort: A Python utility / library to sort imports.
A Python utility / library to sort imports. Contribute to PyCQA/isort development by creating an account on GitHub.
#go #github #lint #cli #gitlab #static_code_analysis #ci #linter #static_analysis #bitbucket #code_review #code_quality #codereview
https://github.com/reviewdog/reviewdog
https://github.com/reviewdog/reviewdog
GitHub
GitHub - reviewdog/reviewdog: 🐶 Automated code review tool integrated with any code analysis tools regardless of programming language
🐶 Automated code review tool integrated with any code analysis tools regardless of programming language - reviewdog/reviewdog
#rust #linter #pep8 #python #python3 #rustpython #static_analysis #static_code_analysis #style_guide #styleguide #stylelint
https://github.com/charliermarsh/ruff
https://github.com/charliermarsh/ruff
GitHub
GitHub - astral-sh/ruff: An extremely fast Python linter and code formatter, written in Rust.
An extremely fast Python linter and code formatter, written in Rust. - astral-sh/ruff
#lua #hacktoberfest #linter #neovim #neovim_plugin #syntax_checker
https://github.com/mfussenegger/nvim-lint
https://github.com/mfussenegger/nvim-lint
GitHub
GitHub - mfussenegger/nvim-lint: An asynchronous linter plugin for Neovim complementary to the built-in Language Server Protocol…
An asynchronous linter plugin for Neovim complementary to the built-in Language Server Protocol support. - mfussenegger/nvim-lint
#go #cli #dependencies #dependency #dependency_graph #golang #graph #linter #terminal #tree #typescript
https://github.com/gabotechs/dep-tree
https://github.com/gabotechs/dep-tree
GitHub
GitHub - gabotechs/dep-tree: Tool for helping developers keep their code bases clean and decoupled. It allows visualising a code…
Tool for helping developers keep their code bases clean and decoupled. It allows visualising a code base complexity using a 3d force-directed graph of files and the dependencies between them. - gab...
😁2🤡2
#python #linter #python #typechecker #types #typing
Mypy is a tool that helps you find mistakes in your Python code before you run it. It checks if you are using the right types for variables and functions, which can prevent errors. You add type hints to your code, and mypy warns you if there are any type errors. This makes your programs easier to understand, debug, and maintain. You can install mypy using pip and integrate it with many popular coding tools like Vim, Emacs, and VS Code. Using mypy saves time by finding bugs early, making your coding process more efficient.
https://github.com/python/mypy
Mypy is a tool that helps you find mistakes in your Python code before you run it. It checks if you are using the right types for variables and functions, which can prevent errors. You add type hints to your code, and mypy warns you if there are any type errors. This makes your programs easier to understand, debug, and maintain. You can install mypy using pip and integrate it with many popular coding tools like Vim, Emacs, and VS Code. Using mypy saves time by finding bugs early, making your coding process more efficient.
https://github.com/python/mypy
GitHub
GitHub - python/mypy: Optional static typing for Python
Optional static typing for Python. Contribute to python/mypy development by creating an account on GitHub.
#javascript #ecmascript #eslint #javascript #linter #static_code_analysis
ESLint is a tool that helps you find and fix problems in your JavaScript code. Here’s how it benefits you ESLint checks your code for patterns that could cause errors or make your code harder to read.
- **Customizable** You can install ESLint using a simple command (`npm init @eslint/config@latest`) and run it on any file or directory.
- **Supports Latest Standards** ESLint has a strong community, regular updates, and a clear versioning policy to ensure stability and security.
Using ESLint helps you write cleaner, more reliable code, saving you time and effort in the long run.
https://github.com/eslint/eslint
ESLint is a tool that helps you find and fix problems in your JavaScript code. Here’s how it benefits you ESLint checks your code for patterns that could cause errors or make your code harder to read.
- **Customizable** You can install ESLint using a simple command (`npm init @eslint/config@latest`) and run it on any file or directory.
- **Supports Latest Standards** ESLint has a strong community, regular updates, and a clear versioning policy to ensure stability and security.
Using ESLint helps you write cleaner, more reliable code, saving you time and effort in the long run.
https://github.com/eslint/eslint
GitHub
GitHub - eslint/eslint: Find and fix problems in your JavaScript code.
Find and fix problems in your JavaScript code. Contribute to eslint/eslint development by creating an account on GitHub.
#python #auto_formatter #cleaner #cli #formatter #hacktoberfest #isort #linter #python #python_utility #python3 #sorting_imports
isort is a tool that helps you organize and sort your Python import statements automatically. It sorts imports alphabetically, separates them into sections, and supports various editors. You can install it using `pip install isort` and use it from the command line or within your Python code. This saves you time and effort, keeping your code clean and consistent. It also integrates with tools like pre-commit hooks to ensure code quality before committing changes. Overall, isort makes managing imports easier and more efficient.
https://github.com/PyCQA/isort
isort is a tool that helps you organize and sort your Python import statements automatically. It sorts imports alphabetically, separates them into sections, and supports various editors. You can install it using `pip install isort` and use it from the command line or within your Python code. This saves you time and effort, keeping your code clean and consistent. It also integrates with tools like pre-commit hooks to ensure code quality before committing changes. Overall, isort makes managing imports easier and more efficient.
https://github.com/PyCQA/isort
GitHub
GitHub - PyCQA/isort: A Python utility / library to sort imports.
A Python utility / library to sort imports. Contribute to PyCQA/isort development by creating an account on GitHub.
🔥1
#ruby #code_formatter #hacktoberfest #linter #rubocop #ruby #static_code_analysis
RuboCop is a tool that helps keep your Ruby code clean and organized. It checks your code for problems and can even fix some of them automatically. This helps you write better code and makes sure it looks consistent throughout your project. Using RuboCop can save you time and effort by catching mistakes early and improving your code's performance. It's easy to install and use, and you can customize it to fit your needs. Overall, RuboCop is a valuable tool for anyone writing Ruby code.
https://github.com/rubocop/rubocop
RuboCop is a tool that helps keep your Ruby code clean and organized. It checks your code for problems and can even fix some of them automatically. This helps you write better code and makes sure it looks consistent throughout your project. Using RuboCop can save you time and effort by catching mistakes early and improving your code's performance. It's easy to install and use, and you can customize it to fit your needs. Overall, RuboCop is a valuable tool for anyone writing Ruby code.
https://github.com/rubocop/rubocop
GitHub
GitHub - rubocop/rubocop: A Ruby static code analyzer and formatter, based on the community Ruby style guide.
A Ruby static code analyzer and formatter, based on the community Ruby style guide. - rubocop/rubocop
👍1
#rust #code_analyzer #code_style #coding_standards #formatter #lexer #linter #parser #php #static_analysis #type_checker
Mago is a very fast tool for PHP that checks your code for errors, fixes many problems automatically, and formats it neatly. It is built using Rust, which makes it much faster and more reliable than many other PHP tools. Mago helps you find bugs, improve code quality, and keep your code clean and consistent with less effort. It also offers deep analysis to catch tricky issues and lets you see your code’s structure visually. This means you can write better PHP code faster and with more confidence. Installation is easy on macOS and Linux using a simple script or other methods like Homebrew or Composer.
https://github.com/carthage-software/mago
Mago is a very fast tool for PHP that checks your code for errors, fixes many problems automatically, and formats it neatly. It is built using Rust, which makes it much faster and more reliable than many other PHP tools. Mago helps you find bugs, improve code quality, and keep your code clean and consistent with less effort. It also offers deep analysis to catch tricky issues and lets you see your code’s structure visually. This means you can write better PHP code faster and with more confidence. Installation is easy on macOS and Linux using a simple script or other methods like Homebrew or Composer.
https://github.com/carthage-software/mago
GitHub
GitHub - carthage-software/mago: Mago is a toolchain for PHP that aims to provide a set of tools to help developers write better…
Mago is a toolchain for PHP that aims to provide a set of tools to help developers write better code. - carthage-software/mago