| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Original HTTPS Page] |
NoneForge is dedicated to creating modern, type-safe, and developer-friendly tools for the TypeScript ecosystem. We focus on:
Our ESLint configurations provide comprehensive, modern linting rules for different JavaScript/TypeScript environments. All configs are built for ESLint 9+ flat config format with full TypeScript 5.5+ support.
| Package | Description | Version | Downloads |
|---|---|---|---|
| @noneforge/eslint-config | Base TypeScript/JavaScript configuration with strict type checking, built-in formatting (Prettier replacement), and modern best practices |
|
|
| @noneforge/eslint-config-node | Node.js backend configuration with security rules, async optimization, and server-specific patterns. Extends the base config |
|
|
| @noneforge/eslint-config-angular | Angular 20+ configuration with component/template rules, accessibility, signals support, and CSS linting. Extends the base config |
|
|
@noneforge/eslint-config (Base)
โโโ @noneforge/eslint-config-node (Base + Node.js specific rules)
โโโ @noneforge/eslint-config-angular (Base + Angular specific rules)
| Project | Description | Status |
|---|---|---|
| Dependency Injection | Type-safe, decorator-based DI container for TypeScript applications | ๐ง In Development |
| Boilerplates | Production-ready starter templates for Node.js and Angular applications | ๐ Planned |
Choose the configuration that matches your project:
# Base TypeScript/JavaScript projects
npm install --save-dev @noneforge/eslint-config eslint typescript
# Node.js backend projects
npm install --save-dev @noneforge/eslint-config-node eslint typescript
# Angular applications
npm install --save-dev @noneforge/eslint-config-angular eslint typescriptCreate eslint.config.js:
// For base TypeScript/JavaScript
import config from '@noneforge/eslint-config';
// Or for Node.js
import config from '@noneforge/eslint-config-node';
// Or for Angular
import config from '@noneforge/eslint-config-angular';
export default [
...config,
// Your custom rules here
];All NoneForge projects follow these core principles:
We welcome contributions to all NoneForge projects! Please check individual repositories for specific contribution guidelines.
All NoneForge projects are MIT licensed. See individual repositories for specific license files.
For questions, bug reports, or feature requests, please open an issue in the relevant repository.
Node.js ESLint configuration with TypeScript, security, and performance rules
TypeScript/JavaScript ESLint configuration with strict type checking and modern stylistic rules
Angular ESLint configuration with TypeScript, component rules, and accessibility
This organization has no public members. You must be a member to see who’s a part of this organization.
Loadingโฆ
Loadingโฆ
| Back | FazBrowse Home | New Git URL |