Package Exports
- @hongtak/style
Readme
Style
To use my style, use the following command in Terminal:
$ npm install --save-dev @hongtak/styleor
$ npm i -D @hongtak/styleTo setup, you'll need to add the following lines: (requires eslint>=v9.0.0)
import { defineConfig } from 'eslint/config'
import style from '@hongtak/style'
export default defineConfig([
style,
])Note: It recommends a use of the "engines" field of package.json. The "engines" field is used by n/no-unsupported-features/* rules.
"engines": {
"node": ">=22.11.0" // Use your node runtime version here
}