Skip to content

Commit

Permalink
fix: ignore cdk.out directories
Browse files Browse the repository at this point in the history
  • Loading branch information
onebytegone committed Sep 17, 2024
1 parent aa8ecac commit 991ea0f
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,13 @@ module.exports = {

'extends': 'eslint:recommended',

// ESLint by default ignores directories with dot prefixes. Some of our projects use
// VuePress which maintains its source code in a `.vuepress` directory. This negated
// ignore pattern enables linting for any projects using our config.
'ignorePatterns': [ '!.vuepress' ],
'ignorePatterns': [ ,
'cdk.out',
// ESLint by default ignores directories with dot prefixes. Some of our projects use
// VuePress which maintains its source code in a `.vuepress` directory. This negated
// ignore pattern enables linting for any projects using our config.
'!.vuepress',
],

'plugins': [
'@silvermine/eslint-plugin-silvermine', // Our custom rules
Expand Down

0 comments on commit 991ea0f

Please sign in to comment.