mirror of
https://github.com/pezkuwichain/pezkuwi-dev.git
synced 2026-04-22 02:08:01 +00:00
cb6801a3cc
- Updated all copyright headers from 2025 to 2026 (system date shows 2026)
- Added build output files to eslint ignore list in packages/dev/config/eslint.js
- Added build output patterns to .gitignore
- Ignored: packages/*/*.{d.ts,js,mjs,cjs}, packages/*/cjs/**, packages/*/env/**,
packages/*/rootJs/**, packages/*/rootStatic/**
- Successfully resolved 521 lint errors by properly ignoring generated files
- Build outputs should not be linted (source files are linted instead)
- Lint and build now pass successfully
35 lines
490 B
Plaintext
35 lines
490 B
Plaintext
.DS_Store
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
.npmrc
|
|
.pnp.*
|
|
.yarn/*
|
|
!.yarn/releases
|
|
!.yarn/plugins
|
|
!.yarn/sdks
|
|
/mod.ts
|
|
/import_map.json
|
|
build/
|
|
build-*/
|
|
cc-test-reporter
|
|
coverage/
|
|
node_modules/
|
|
npm-debug.log*
|
|
tmp/
|
|
tsconfig.*buildinfo
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# TypeScript build outputs
|
|
packages/*/*.d.ts
|
|
packages/*/*.js
|
|
packages/*/*.mjs
|
|
packages/*/*.cjs
|
|
packages/*/cjs/
|
|
packages/*/env/
|
|
packages/*/rootJs/
|
|
packages/*/rootStatic/
|
|
packages/*/LICENSE
|