# transform **Repository Path**: zed2019/transform ## Basic Information - **Project Name**: transform - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-12 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # eslint-plugin-thanos eslint plugin for Thanos project ## Installation You'll first need to install [ESLint](http://eslint.org): ``` $ npm i eslint --save-dev ``` Next, install `eslint-plugin-thanos`: ``` $ npm install eslint-plugin-thanos --save-dev ``` **Note:** If you installed ESLint globally (using the `-g` flag) then you must also install `eslint-plugin-thanos` globally. ## Usage Add `thanos` to the plugins section of your `.eslintrc` configuration file. You can omit the `eslint-plugin-` prefix: ```json { "plugins": [ "thanos" ] } ``` Then configure the rules you want to use under the rules section. ```json { "rules": { "thanos/rule-name": 2 } } ``` ## Supported Rules * Fill in provided rules here