From 6e6ee3907bb168873cd72182cf9535a56c273937 Mon Sep 17 00:00:00 2001 From: Grant Forsythe Date: Wed, 29 Jan 2025 20:43:19 -0500 Subject: [PATCH] style: remove linting rule to enforce app prefix for components --- eslint.config.mjs | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 9aa90b6e4..202d485b2 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -80,23 +80,7 @@ export default tseslint.config( '@angular-eslint/use-component-view-encapsulation': 'error', '@angular-eslint/no-input-rename': 'off', '@angular-eslint/directive-class-suffix': 'off', - '@angular-eslint/no-output-native': 'off', - '@angular-eslint/directive-selector': [ - 'error', - { - type: 'attribute', - prefix: 'app', - style: 'camelCase' - } - ], - '@angular-eslint/component-selector': [ - 'error', - { - type: 'element', - prefix: 'app', - style: 'kebab-case' - } - ] + '@angular-eslint/no-output-native': 'off' } }, {