Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/klzns/eslint-plugin-tachyons-jsx
Linter for Tachyons in JSX
https://github.com/klzns/eslint-plugin-tachyons-jsx
Last synced: 19 days ago
JSON representation
Linter for Tachyons in JSX
- Host: GitHub
- URL: https://github.com/klzns/eslint-plugin-tachyons-jsx
- Owner: klzns
- Created: 2017-10-22T23:50:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-22T23:57:28.000Z (over 7 years ago)
- Last Synced: 2024-11-12T15:43:47.428Z (3 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# eslint-plugin-tachyons-jsx
Linter for Tachyons in JSX
## Installation
You'll first need to install [ESLint](http://eslint.org):
```
$ npm i eslint --save-dev
```Next, install `eslint-plugin-tachyons-jsx`:
```
$ npm install eslint-plugin-tachyons-jsx --save-dev
```**Note:** If you installed ESLint globally (using the `-g` flag) then you must also install `eslint-plugin-tachyons-jsx` globally.
## Usage
Add `tachyons-order` to the plugins section of your `.eslintrc` configuration file. You can omit the `eslint-plugin-` prefix:
```json
{
"plugins": [
"tachyons-jsx"
]
}
```Then configure the rules you want to use under the rules section.
```json
{
"rules": {
"tachyons-jsx/rule-name": 2
}
}
```## Supported Rules
* Fill in provided rules here