v0.0.1
Installation
```bash
npm install @neuralinverse/misra
```
What's included
Scaffold for MISRA C:2012 (143 rules + 16 directives) and MISRA C++:2008 (228 rules) — all types, file structure, and rule stubs across both standards. Full rule implementation in progress.
Usage
```typescript
import { MISRA_RULES, MISRA_C_2012_RULES, MISRA_CPP_2008_RULES } from '@neuralinverse/misra';
const mandatory = MISRA_RULES.filter(r => r.category === 'mandatory');
const decidable = MISRA_RULES.filter(r => r.decidability === 'decidable');
```