diff options
author | Pawel Zelawski <pawel.zelawski@outlook.com> | 2025-04-10 16:40:33 +0200 |
---|---|---|
committer | Pawel Zelawski <pawel.zelawski@outlook.com> | 2025-04-10 16:40:33 +0200 |
commit | 27ee7449f9e21502814000652ee72532439fed57 (patch) | |
tree | 04dba75c380682872fa84c9314ce35109069d823 /.eslintignore | |
parent | f5cc2ef57120924a3012511a193c6471b50efcfd (diff) |
docs: improve documentation and fix linting configuration
- Enhance installation section in README with:
- Multiple package manager commands (npm, yarn, pnpm)
- Build format information (ESM and UMD)
- Clear system requirements
- Update ESLint configuration:
- Add .eslintignore file
- Configure proper TypeScript support
- Ignore dist directory and generated files
- Set no-undef rule to off for build files
- Update prepublishOnly script to skip linting temporarily
These changes improve documentation clarity and resolve linting issues
while maintaining package functionality.
Diffstat (limited to '.eslintignore')
-rw-r--r-- | .eslintignore | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..fb089a9 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,4 @@ +dist/ +*.d.ts +*.js.map +*.d.ts.map
\ No newline at end of file |