mirror of
https://github.com/lucide-icons/lucide.git
synced 2026-08-29 10:18:24 +02:00
39 lines
868 B
JavaScript
39 lines
868 B
JavaScript
|
|
module.exports = {
|
||
|
|
root: true,
|
||
|
|
overrides: [
|
||
|
|
{
|
||
|
|
files: ['*.ts'],
|
||
|
|
extends: [
|
||
|
|
'eslint:recommended',
|
||
|
|
'plugin:@typescript-eslint/recommended',
|
||
|
|
'plugin:@angular-eslint/recommended',
|
||
|
|
'plugin:@angular-eslint/template/process-inline-templates',
|
||
|
|
'prettier',
|
||
|
|
],
|
||
|
|
rules: {
|
||
|
|
'@angular-eslint/directive-selector': [
|
||
|
|
'error',
|
||
|
|
{
|
||
|
|
type: 'attribute',
|
||
|
|
prefix: 'lucide',
|
||
|
|
style: 'camelCase',
|
||
|
|
},
|
||
|
|
],
|
||
|
|
'@angular-eslint/component-selector': [
|
||
|
|
'error',
|
||
|
|
{
|
||
|
|
type: 'attribute',
|
||
|
|
prefix: ['lucide'],
|
||
|
|
style: 'camelCase',
|
||
|
|
},
|
||
|
|
],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
{
|
||
|
|
files: ['*.html'],
|
||
|
|
extends: ['plugin:@angular-eslint/template/recommended'],
|
||
|
|
rules: {},
|
||
|
|
},
|
||
|
|
],
|
||
|
|
};
|