Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/darkwebdev/eslint-config-marko-tester
Marko-tester JS linting configs for ESLint
https://github.com/darkwebdev/eslint-config-marko-tester
Last synced: about 1 month ago
JSON representation
Marko-tester JS linting configs for ESLint
- Host: GitHub
- URL: https://github.com/darkwebdev/eslint-config-marko-tester
- Owner: darkwebdev
- Created: 2016-12-22T10:56:30.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-01T15:17:32.000Z (over 7 years ago)
- Last Synced: 2024-11-09T08:47:08.496Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# eslint-config-marko-tester
Marko-tester Javascript linting configs for ESLint## Installation
```
yarn add --dev eslint eslint-config-marko-tester
```
or
```
npm i --save-dev eslint eslint-config-marko-tester
```## Configuration
Create `.eslintrc.json` file with the following content:
```
{
"extends": [ "marko-tester" ],
"rules": {
your additional rules here
}
}
```## Run
```
eslint .
```## Available configs to extend
- `marko-tester` (Latest ES8/2017 support)
- `marko-tester/node6` (ES7/2016 support)
- `marko-tester/node4` (~50% of ES6/2015 support)
- `marko-tester/legacy` (ES5 support)