Skip to content

Commit

Permalink
Cleanup eslint config
Browse files Browse the repository at this point in the history
  • Loading branch information
vpmedia committed Oct 10, 2024
1 parent 89583da commit 2fd3028
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/* eslint n/no-unpublished-import: 0 */
import js from '@eslint/js';
// import importPlugin from 'eslint-plugin-import';
import jsdocPlugin from 'eslint-plugin-jsdoc';
import nodePlugin from 'eslint-plugin-n';
import unicornPlugin from 'eslint-plugin-unicorn';
Expand Down Expand Up @@ -39,7 +38,6 @@ export default [
},
files: ['**/*.{js,jsx,mjs,cjs,ts,tsx}'],
plugins: {
// import: importPlugin,
jsdoc: jsdocPlugin,
n: nodePlugin,
unicorn: unicornPlugin,
Expand All @@ -55,12 +53,10 @@ export default [
rules: {
...js.configs.recommended.rules,
...jsdocPlugin.configs['flat/recommended'].rules,
// ...importPlugin.configs.recommended.rules,
...nodePlugin.configs.recommended.rules,
'no-unused-vars': 'off',
'prefer-arrow-callback': 'warn',
'prefer-template': 'warn',
// 'import/extensions': ['warn', 'always'],
'jsdoc/require-jsdoc': [
'warn',
{
Expand Down

0 comments on commit 2fd3028

Please sign in to comment.