0.6.0 • Published 12 months ago

@langri-sha/projen-editorconfig v0.6.0

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

@langri-sha/editorconfig

A projen component that you can add to your project to author EditorConfig configurations.

Usage

Install dependencies:

npm install -D @langri-sha/editorconfig

Then, create an EditorConfig component for your projects:

import { Project } from 'projen'
import { EditorConfig } from '@langri-sha/editorconfig'

const project = new Project({
  name: 'my-project',
})

new EditorConfig(project, {
  '*': {
    indent_size: 2,
  },
  Dockerfile: {
    indent_size: 4,
    indent_style: 'tab',
  },
})
0.5.0

1 year ago

0.4.0

1 year ago

0.6.0

12 months ago

0.5.1

12 months ago

0.3.4

1 year ago

0.3.3

1 year ago

0.3.2

1 year ago

0.3.0

1 year ago

0.3.1

1 year ago

0.2.0

1 year ago