├── .github └── workflows │ └── rust.yml ├── .gitignore ├── .gitpod.yml ├── .licensesnip ├── .licensesnipignore ├── .pre-commit-hooks.yaml ├── .replit ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── licensesnip.config.jsonc ├── npm ├── getBinary.js ├── install.js ├── run.js └── uninstall.js ├── package.json ├── src ├── base-config.jsonc ├── commands │ ├── check.rs │ ├── config.rs │ ├── default.rs │ ├── mod.rs │ └── remove.rs ├── config.rs ├── default-config.jsonc ├── frontend │ └── mod.rs ├── license.rs └── main.rs └── test ├── ignored └── a.rs └── ignored2 └── b.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | 3 | node_modules -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.licensesnip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/.licensesnip -------------------------------------------------------------------------------- /.licensesnipignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/.licensesnipignore -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/.replit -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/README.md -------------------------------------------------------------------------------- /licensesnip.config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/licensesnip.config.jsonc -------------------------------------------------------------------------------- /npm/getBinary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/npm/getBinary.js -------------------------------------------------------------------------------- /npm/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/npm/install.js -------------------------------------------------------------------------------- /npm/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/npm/run.js -------------------------------------------------------------------------------- /npm/uninstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/npm/uninstall.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/package.json -------------------------------------------------------------------------------- /src/base-config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/src/base-config.jsonc -------------------------------------------------------------------------------- /src/commands/check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/src/commands/check.rs -------------------------------------------------------------------------------- /src/commands/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/src/commands/config.rs -------------------------------------------------------------------------------- /src/commands/default.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/src/commands/default.rs -------------------------------------------------------------------------------- /src/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/src/commands/mod.rs -------------------------------------------------------------------------------- /src/commands/remove.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/src/commands/remove.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/default-config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/src/default-config.jsonc -------------------------------------------------------------------------------- /src/frontend/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/src/frontend/mod.rs -------------------------------------------------------------------------------- /src/license.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/src/license.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notken12/licensesnip/HEAD/src/main.rs -------------------------------------------------------------------------------- /test/ignored/a.rs: -------------------------------------------------------------------------------- 1 | // file to be ignored 2 | -------------------------------------------------------------------------------- /test/ignored2/b.rs: -------------------------------------------------------------------------------- 1 | // also ignored 2 | --------------------------------------------------------------------------------