@@ -3,6 +3,7 @@ import { fileURLToPath } from 'node:url';
33import { FlatCompat } from '@eslint/eslintrc' ;
44import js from '@eslint/js' ;
55
6+ // needed to extend the guild config
67const __filename = fileURLToPath ( import . meta. url ) ;
78const __dirname = path . dirname ( __filename ) ;
89const compat = new FlatCompat ( {
@@ -14,11 +15,7 @@ const compat = new FlatCompat({
1415export 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