* fix: ignoring url checker files * fix: url checker * fix: auto fmt and cleanup * fix: moving the bash scripts and known files into the scripts repo * fix: removed all url_results and made it be all in memory * fix: fixed the newline issue * fix: url checking as a step to the static analysis * fix: removed old code * chore: writing documentation on our static checker pattern * fix: updating the docs more to be clearer * fix: copy and paste without understanding requirements of ci cd dependencies? do i need all of these? * fix: updating * fix: I thought this got in? * Update CONTRIBUTING.md Co-authored-by: Jace Browning <jacebrowning@gmail.com> --------- Co-authored-by: Jace Browning <jacebrowning@gmail.com>
90 lines
1.5 KiB
Plaintext
90 lines
1.5 KiB
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# dependencies
|
|
node_modules
|
|
/.pnp
|
|
.pnp.js
|
|
|
|
# testing
|
|
/coverage
|
|
|
|
# production
|
|
build
|
|
|
|
# misc
|
|
.DS_Store
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
.direnv
|
|
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
.idea
|
|
.vscode
|
|
.helix
|
|
result
|
|
|
|
# rust
|
|
rust/target
|
|
rust/kcl-lib/bindings
|
|
rust/kcl-language-server/server
|
|
public/kcl_wasm_lib_bg.wasm
|
|
rust/lcov.info
|
|
rust/kcl-wasm-lib/pkg
|
|
*.snap.new
|
|
rust/kcl-lib/fuzz/Cargo.lock
|
|
rust/kcl-language-server-release/Cargo.lock
|
|
|
|
# kcl language server package
|
|
rust/kcl-language-server/dist/
|
|
|
|
e2e/playwright/playwright-secrets.env
|
|
e2e/playwright/temp1.png
|
|
e2e/playwright/temp2.png
|
|
e2e/playwright/temp3.png
|
|
# this will be overridden for specific directories
|
|
e2e/playwright/**/*.png
|
|
# exports from snapshot-tests.spec.ts "exports of each format should work"
|
|
e2e/playwright/export-snapshots/*
|
|
!e2e/playwright/export-snapshots/*.png
|
|
!e2e/playwright/snapshot-tests.spec.ts-snapshots/*.png
|
|
trace.zip
|
|
|
|
/public/kcl-samples.zip
|
|
/public/kcl-samples/.github
|
|
/public/kcl-samples/screenshots/main.kcl
|
|
/public/kcl-samples/step/main.kcl
|
|
/public/kcl-samples/internal
|
|
/rust/kcl-lib/tests/kcl_samples/internal
|
|
/test-results/
|
|
/playwright-report/
|
|
/blob-report/
|
|
/playwright/.cache/
|
|
/src/lang/std/artifactMapCache
|
|
|
|
## generated files
|
|
src/**/*.typegen.ts
|
|
|
|
Mac_App_Distribution.provisionprofile
|
|
|
|
*.tsbuildinfo
|
|
|
|
.eslintcache
|
|
.vite/
|
|
|
|
# electron
|
|
out/
|
|
|
|
# python
|
|
__pycache__/
|
|
uv.lock
|
|
dist
|
|
venv
|
|
|
|
.vscode-test
|
|
.biome/
|
|
.million |