Password generator for Emacs, powered by transient
Go to file
Lucien Cartier-Tilet 4a22d8f7c0
CI / build (26.3) (push) Successful in 1m55s Details
CI / build (27.2) (push) Successful in 2m11s Details
CI / build (28.2) (push) Successful in 1m53s Details
CI / build (29.1) (push) Successful in 1m44s Details
CI / build (snapshot) (push) Successful in 1m34s Details
ci: make tests happy
2024-02-08 05:16:36 +01:00
.gitea/workflows ci: update Makepkg and add CI 2024-02-08 05:10:01 +01:00
.gitignore initial commit 2024-02-08 03:52:30 +01:00
Eask ci: make tests happy 2024-02-08 05:16:36 +01:00
Makefile ci: update Makepkg and add CI 2024-02-08 05:10:01 +01:00
README.md initial commit 2024-02-08 03:52:30 +01:00
password-gen.el ci: make tests happy 2024-02-08 05:16:36 +01:00

README.md

This project was bootstrapped with eask/cli.

How to use?

  1. Write and design your package in your-package.el
  2. Install package dependences if any:
eask install-deps
  1. Prepare for installation, package it: (it will create package to dist folder)
eask package
  1. Install the built package:
eask install

Compile

You would want to compile your elisp file to check if there are errors:

eask compile

Cleaning

Simply executes the following:

eask clean all

For more options, see eask clean --help!

Linting

Linting is often optional but recommended to all elisp developers.

with checkodc:

eask lint checkodc

with package-lint:

eask lint package  # for pacakge-lint

For more options, see eask lint --help!

Testing

Eask supports ERT , Buttercup , Ecukes, and more.

For more options, see eask test --help!

Continuous Integration

GitHub Actions

eask generate workflow github

CircleCI

eask generate workflow circle-ci

For more options, see eask generate workflow --help!

Learn More

To learn Eask, check out the Eask documentation.