# eslint-plugin-dylan **Repository Path**: dylanyg/eslint-plugin-dylan ## Basic Information - **Project Name**: eslint-plugin-dylan - **Description**: rule set and default configuration - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2022-02-14 - **Last Updated**: 2022-02-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # eslint-plugin-dylan eslint plugin dylan ## Installation You'll first need to install [ESLint](https://eslint.org/): ```sh npm i eslint --save-dev ``` Next, install `eslint-plugin-dylan`: ```sh npm install eslint-plugin-dylan --save-dev ``` ## Usage Add `dylan` to the plugins section of your `.eslintrc` configuration file. You can omit the `eslint-plugin-` prefix: ```json { "plugins": [ "dylan" ] } ``` Then configure the rules you want to use under the rules section. ```json { "rules": { "dylan/rule-name": 2 } } ``` Or configure the `recommend` rules ```js module.exports = { plugins: [ 'dylan' ], extends: [ "plugin:dylan/recommend" ] } ``` ## Supported Rules * Fill in provided rules here