Skip to content

Commit

Permalink
add eslint ignore for test fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
mansona committed May 27, 2024
1 parent a7bd938 commit 656531e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@ import pluginJs from '@eslint/js';
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended';

export default [
{ files: ['**/*.js'], languageOptions: { sourceType: 'commonjs' } },
{
files: ['**/*.js'],
languageOptions: { sourceType: 'commonjs' },
},
{ languageOptions: { globals: globals.node } },
pluginJs.configs.recommended,
eslintPluginPrettierRecommended,
{
ignores: ['tests/fixture/*'],
},
];

0 comments on commit 656531e

Please sign in to comment.