3 repositorios
Guidelines and constraints used to ensure collaboration and maintainable code quality in frontend projects.
Distinct from Frontend Development Rules: Focuses on general collaboration and quality rules rather than framework-specific AI-assisted rules.
Explore 3 awesome GitHub repositories matching web development · Coding Quality Rules. Refine with filters or upvote what's useful.
js-the-right-way is a JavaScript best practices guide and coding standards reference designed to provide a curated collection of industry materials for writing maintainable code. It serves as a web development education resource, offering organized documentation on modern JavaScript patterns and idioms. The project is structured as a markdown-based documentation site, where guides written in lightweight markup are rendered as static pages. It utilizes a curated network of hyperlinks to connect internal documentation with external industry standards.
Establishes a consistent set of rules for writing scripts to ensure better collaboration and code quality.
eslint-config-prettier is a configuration layer and CLI tool that identifies and disables ESLint rules which conflict with Prettier's code formatting. It provides an ESLint configuration preset that turns off style-related rules, along with a command-line scanner that detects and reports conflicting rules from a project's existing setup. The tool operates entirely at configuration time, producing a modified ESLint config that disables formatting conflicts without any runtime overhead during linting. It works across any ESLint plugin by matching rule names against a curated conflict database,
Disables ESLint rules that conflict with Prettier formatting, enabling combination with other configs without clashes.
Allure is a test reporting framework that normalizes execution data from multiple test frameworks across different programming languages into a common intermediate format. It aggregates results from multiple sources into a shared directory of JSON files and generates self-contained HTML reports through a modular plugin pipeline. The architecture includes a hierarchical step tree model to represent test execution, metadata annotation injection to enrich results at runtime, and directory-watch incremental rendering that regenerates reports in real time as new data arrives. Unlike generic report
Check test results against a set of rules and fail the run when rules are violated, blocking deployment.