Skip to content

Commit

Permalink
feat: add no-import-type-side-effects
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Aug 5, 2024
1 parent daab7e8 commit 3d203bd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions projects/eslint-plugin-experience/all.js
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,7 @@ module.exports = {
],
'@typescript-eslint/no-for-in-array': 'error',
'@typescript-eslint/no-implied-eval': 'error',
'@typescript-eslint/no-import-type-side-effects': 'error',
'@typescript-eslint/no-inferrable-types': 'error',
'@typescript-eslint/no-namespace': ['error', {allowDeclarations: true}],
'@typescript-eslint/no-non-null-asserted-nullish-coalescing': 'error',
Expand Down Expand Up @@ -1030,6 +1031,9 @@ module.exports = {
],
};

/**
* @param {string} filename
*/
function projectJsonExist(filename) {
try {
const path = require('node:path').resolve(filename);
Expand Down

0 comments on commit 3d203bd

Please sign in to comment.