logo

ls-lint

An extremely fast file and directory name linter

GitHub stars build NPM Downloads NPM Downloads License

Get Started →

Simplicity First

Minimal setup with simple rules managed in one or multiple .ls-lint.yml files

Platform Support

Support for Windows, MacOS and Linux + NPM Package + GitHub Action + Homebrew + Docker

Extremely fast

Lints thousands of files and directories in milliseconds

Bring some structure to your project filesystem

Manage all your file and directory names in one single .ls-lint.yml file

.ls-lint.yaml
ls:
  packages/*/{src,__tests__}:
    .js: kebab-case
    .ts: camelCase | PascalCase
    .d.ts: camelCase
    .spec.ts: camelCase | PascalCase
    .mock.ts: camelCase

  components/*:
    .ts: regex:${0}
    tests:
      .*: exists:0
      .test.ts: regex:${1}

ignore:
  - node_modules