add components from angular-lib

This commit is contained in:
Tykayn 2025-08-07 14:24:23 +02:00 committed by tykayn
parent 3c429c42f4
commit 834d1521f0
100 changed files with 33352 additions and 0 deletions

View file

@ -0,0 +1,32 @@
// @ts-check
const tseslint = require("typescript-eslint");
const rootConfig = require("../../eslint.config.js");
module.exports = tseslint.config(
...rootConfig,
{
files: ["**/*.ts"],
rules: {
"@angular-eslint/directive-selector": [
"error",
{
type: "attribute",
prefix: "lib",
style: "camelCase",
},
],
"@angular-eslint/component-selector": [
"error",
{
type: "element",
prefix: "lib",
style: "kebab-case",
},
],
},
},
{
files: ["**/*.html"],
rules: {},
}
);