update README.md

This commit is contained in:
DEV Sam Hayes
2025-02-07 23:55:51 +01:00
parent 4b7b819c59
commit fedf7d7e81
3 changed files with 56 additions and 10 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: "app",
style: "camelCase",
},
],
"@angular-eslint/component-selector": [
"error",
{
type: "element",
prefix: "app",
style: "kebab-case",
},
],
},
},
{
files: ["**/*.html"],
rules: {},
}
);