https://github.com/gemini-testing/eslint-config
https://github.com/gemini-testing/eslint-config
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gemini-testing/eslint-config
- Owner: gemini-testing
- License: mit
- Created: 2016-07-13T11:57:52.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-10-06T09:54:59.000Z (over 4 years ago)
- Last Synced: 2024-12-15T12:45:20.722Z (6 months ago)
- Language: JavaScript
- Size: 22.5 KB
- Stars: 0
- Watchers: 7
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
# eslint-config-gemini-testing
Config for [ESLint](http://eslint.org/).
## Installation
```bash
$ npm install eslint-config-gemini-testing
```## Using in a project
* Add file `.eslintrc.js` to the root of your project:
```js
module.exports = {
extends: 'gemini-testing',
root: true
};
```* Add file `.eslintrc.js` to the test folder:
```js
module.exports = {
extends: 'gemini-testing/tests'
};
```
* Add file `.eslintrc.js` to the folder with client js:```js
module.exports = {
extends: 'gemini-testing/browser'
};
```