File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
packages/internals/scripts Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import tseslint from 'typescript-eslint';
44export default tseslint . config ( [
55 {
66 files : [ '**/*.ts' , '**/*.(c|m)?js' ] ,
7+ ignores : [ '**/dist/**' , '**/e2e/**' ] ,
78 extends : [ solanaConfig ] ,
89 } ,
910 {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { $, argv } from 'zx';
44// Lint and format the code.
55$ . stdio = 'inherit' ;
66if ( argv . fix ) {
7- await $ `pnpm eslint --fix "src/**" "test/**" && pnpm prettier --log-level warn --ignore-unknown --write ./*` ;
7+ await $ `pnpm eslint --fix . && pnpm prettier --log-level warn --ignore-unknown --write ./*` ;
88} else {
9- await $ `pnpm eslint "src/**" "test/**" && pnpm prettier --check .` ;
9+ await $ `pnpm eslint . && pnpm prettier --check .` ;
1010}
You can’t perform that action at this time.
0 commit comments