Skip to content

Commit

Permalink
feat(eslint-config-angular): add default ignore pattern (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Nov 23, 2021
1 parent 79e0f57 commit fde6df0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
16 changes: 15 additions & 1 deletion packages/eslint-config-angular/internal/base.js
@@ -1,5 +1,19 @@
module.exports = {
extends: [],
ignorePatterns: [
'dist',
'node_modules',
'**/node_modules/**',
'**/schematics/*',
'**/coverage/**',
'eslintrc.js',
'.eslintrc.js',
'**/*.d.ts',
'**/dist/**',
'**/docs/**',
'.cache/**',
'.git/**',
'.idea/**',
],
parser: '@typescript-eslint/parser',
rules: {
'no-param-reassign': 'error',
Expand Down
1 change: 0 additions & 1 deletion packages/eslint-config-angular/internal/import.js
@@ -1,5 +1,4 @@
module.exports = {
extends: [],
parser: '@typescript-eslint/parser',
settings: {
'import/parsers': { '@typescript-eslint/parser': ['.ts'] },
Expand Down

0 comments on commit fde6df0

Please sign in to comment.