Skip to content

Commit

Permalink
Add missing .eslintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
imagoiq committed Mar 20, 2024
1 parent 29944b9 commit 226ab66
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
module.exports = {
extends: '../../.eslintrc.json',
ignorePatterns: ['!**/*', 'node_modules'],
overrides: [
{
files: ['*.ts'],
parserOptions: {
tsconfigRootDir: __dirname,
project: ['tsconfig.app.json', 'tsconfig.spec.json'],
createDefaultProgram: true,
},
rules: {
'@angular-eslint/directive-selector': 0,
'@angular-eslint/component-selector': 0,
},
},
{
files: ['*.html'],
rules: {},
},
],
};

0 comments on commit 226ab66

Please sign in to comment.