Skip to content

Commit 097b367

Browse files
committed
review lint rules
1 parent 2e7a9e9 commit 097b367

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

eslint.config.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { fileURLToPath } from 'node:url';
33
import { FlatCompat } from '@eslint/eslintrc';
44
import js from '@eslint/js';
55

6+
// needed to extend the guild config
67
const __filename = fileURLToPath(import.meta.url);
78
const __dirname = path.dirname(__filename);
89
const compat = new FlatCompat({
@@ -14,11 +15,7 @@ const compat = new FlatCompat({
1415
export default [
1516
{
1617
ignores: [
17-
'**/node_modules',
1818
'**/dist',
19-
'**/build',
20-
'**/generated',
21-
'packages/cli/tests/cli/init',
2219
'packages/cli/tests/cli/validation',
2320
'packages/ts/test/',
2421
'**/examples',
@@ -32,7 +29,6 @@ export default [
3229
'unicorn/no-array-push-push': 'off',
3330
'import/no-default-export': 'off',
3431
'@typescript-eslint/no-explicit-any': 'off',
35-
'@typescript-eslint/ban-types': 'off',
3632
eqeqeq: 'off',
3733
'@typescript-eslint/no-unused-vars': 'off',
3834
},
@@ -43,7 +39,6 @@ export default [
4339
rules: {
4440
'@typescript-eslint/no-namespace': 'off',
4541
'sonarjs/no-inverted-boolean-check': 'off',
46-
'no-loss-of-precision': 'warn',
4742
},
4843
},
4944
{

0 commit comments

Comments
 (0)