generator.client.angular.core.eslint.config.mjs.mustache Maven / Gradle / Ivy
import eslint from '@eslint/js';
import angular from 'angular-eslint';
import globals from 'globals';
import tseslint from 'typescript-eslint';
export default tseslint.config(
{
languageOptions: {
globals: {
...globals.node,
},
},
},
{
ignores: ['{{projectBuildDirectory}}/'],
},
eslint.configs.recommended,
{
files: ['src/main/webapp/**/*.ts'],
extends: [...tseslint.configs.strictTypeChecked, ...tseslint.configs.stylistic, ...angular.configs.tsRecommended],
languageOptions: {
globals: {
...globals.browser,
},
parserOptions: {
project: ['./tsconfig.app.json', './tsconfig.spec.json'],
},
},
processor: {
// https://github.com/angular-eslint/angular-eslint/issues/1917
meta: {
name: 'extract-inline-html',
},
...angular.processInlineTemplates,
},
rules: {
'@angular-eslint/component-selector': [
'error',
{
type: 'element',
prefix: 'jhi',
style: 'kebab-case',
},
],
'@angular-eslint/directive-selector': [
'error',
{
type: 'attribute',
prefix: 'jhi',
style: 'camelCase',
},
],
'@typescript-eslint/unbound-method': 'off',
'@typescript-eslint/no-floating-promises': 'off',
'@typescript-eslint/no-extraneous-class': 'off',
'@typescript-eslint/no-confusing-void-expression': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/restrict-template-expressions': ['error', { allowNumber: true }],
'arrow-body-style': 'error',
},
},
{
files: ['**/*.html'],
extends: [...angular.configs.templateRecommended, ...angular.configs.templateAccessibility],
rules: {},
},
);
© 2015 - 2025 Weber Informatics LLC | Privacy Policy