0.3.7 • Published 3 years ago

@compgen/stylelint v0.3.7

Weekly downloads
264
License
MIT
Repository
-
Last release
3 years ago

@compgen/stylelint

A micro generator for generating stylelint configuration.

CLI

I highly recommend using npx so that you don't have to install anything globally, and you can always get the latest version from npm.

  • optional --path=target_folder
npx @compgen/stylelint

Programmatically

You have to generate JSON schema and use execute function from @compgen/core:

// src/index.ts
import {
  execute,
  getProjectFolder,
  askAppTypeFE,
  AppType,
  logError,
  askYesNo,
} from '@compgen/core'
import { createSchemaForMobile, createSchemaForWeb } from '@compgen/stylelint'

export const askHasPrettier = () => askYesNo('Do you use prettier?')

const generate = async () => {
  const projectFolder = getProjectFolder() ?? '.'
  const type = await askAppTypeFE()
  const hasPrettier = await askHasPrettier()

  const stylelintSchema =
    type === AppType.REACT
      ? createSchemaForWeb({ hasPrettier })
      : createSchemaForMobile({ hasPrettier })

  await execute(stylelintSchema, projectFolder)
}

generate()

Now all you have to do is run:

ts-node src/index.ts
0.3.7

3 years ago

0.3.6

3 years ago

0.3.5

3 years ago

0.3.4

3 years ago

0.3.3

3 years ago

0.3.2

3 years ago

0.3.1

3 years ago

0.3.0

3 years ago

0.2.1

3 years ago

0.2.0

3 years ago

0.2.2

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago

1.0.0

4 years ago