Files
pbakaus_impeccable/tests/fixtures/antipatterns/external-styles.css
T
Paul BakausandClaude Opus 4.6 3c9cc86061 Merge CLI into main repo, switch everything to Apache 2.0
Merges the impeccable-detect CLI repo (pbakaus/impeccable-cli@831a6cc)
into this repo. The BSL-1.1 license that motivated the split is gone;
everything is now Apache 2.0.

- Add bin/, src/, detection tests and fixtures from CLI repo
- Merge package.json: name → "impeccable", add bin/exports/files fields
- Internal refs now read from local src/ instead of node_modules/
- Update SPDX headers, NOTICE.md, CLAUDE.md, FAQ, npm README
- Add prepack/postpack scripts for CLI-focused README on npm
- Remove terminal license labels (no longer needed)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-05 16:50:33 -07:00

34 lines
748 B
CSS

/* External stylesheet that applies anti-pattern styles */
/* Side-tab via external class */
.external-side-tab {
background: white;
padding: 1rem;
border-radius: 12px;
border-left: 4px solid #3b82f6;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
/* Top border accent via external class */
.external-top-accent {
background: white;
padding: 1rem;
border-radius: 12px;
border-top: 3px solid #8b5cf6;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
/* Overused font from external stylesheet */
.external-inter {
font-family: 'Inter', sans-serif;
}
/* Clean card — should NOT flag */
.external-clean {
background: white;
padding: 1rem;
border-radius: 12px;
border: 1px solid #e5e7eb;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}