misclint
TypeScript icon, indicating that this package has built-in type declarations

0.2.6 • Public • Published

misclint

What's this

Lint some misc stuff:

  • directory size
  • file size
  • directory name
  • file name
  • substring in file

I'm tired of checking & preventing shitty code & output at work. I think I need a tool to finish the chaos.

Usage

Installation

npm install misclint

Create config file

Create a file with name misclint.config.mjs (or any other names, it doesn't matter).

Just make sure do not use .js suffix since it can only be run with es module.

// @ts-check
import { executeConfig } from 'misclint'

executeConfig({
  overrides: [
    {
      // glob, array can also be used, for example 'src/**/*', ['src', 'dist']
      files: 'dist',
      rules: {
        maxDirectorySize: {
          size: 51200
        }
      }
    },
    // ... other { files, rules }
  ]
})

Run lint

node mistlint.config.mjs

Rules

maxFileSize

Limit max file size.

type Options = {
  // bytes
  size: number
  // Whether to show size info even if there's no error
  // @default false
  showInfo?: boolean
}

maxDirectorySize

Limit max directory size

type Options = {
  // bytes
  size: number
  // Whether to ingore folder size. In different file system, such as ext or
  // apfs, size of folders are different thus the result in different system
  // may be inaccurate
  // @default false
  ignoreFolderSize?: boolean
  // Whether to show size info even if there's no error
  // @default false
  showInfo?: boolean
}

noKebabCaseDirname

Disallow kebab case directory name.

type Options = true

noKebabCaseFilename

Disallow kebab case file name.

type Options = true

noPattern

Disallow string patterns existing in files.

type Options = { patterns: string[] }

requiredPattern

Force string patterns existing in files.

type Options = { patterns: string[] }

Readme

Keywords

none

Package Sidebar

Install

npm i misclint

Weekly Downloads

0

Version

0.2.6

License

MIT

Unpacked Size

20.2 kB

Total Files

34

Last publish

Collaborators

  • 07akioni