https://github.com/mrmlnc/eslint-config-mrmlnc
https://github.com/mrmlnc/eslint-config-mrmlnc
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mrmlnc/eslint-config-mrmlnc
- Owner: mrmlnc
- License: mit
- Created: 2019-08-30T11:40:20.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2025-10-20T02:04:00.000Z (9 months ago)
- Last Synced: 2025-10-26T11:39:53.670Z (9 months ago)
- Language: JavaScript
- Size: 331 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# :panda_face: eslint-config-mrmlnc
## Introduction
This is the ESLint configuration file used in [@mrmlnc](https://github.com/mrmlnc) projects.
## Installation
```sh
npm install --save-dev eslint-config-mrmlnc
```
## Usage
With ES Modules:
```js
// ./eslint.config.mjs
import * as cfg from 'eslint-config-mrmlnc';
export default cfg.build({
// The following configurations are enabled by default.
// esModuleJavaScript: true,
// typescript: true,
// mocha: true,
});
```
With CommonJS Modules:
```js
const cfg = require('eslint-config-mrmlnc');
module.exports = cfg.build(/* */);
```