https://github.com/danielsss/eslint-config-daniels
a personal eslint config
https://github.com/danielsss/eslint-config-daniels
Last synced: 4 months ago
JSON representation
a personal eslint config
- Host: GitHub
- URL: https://github.com/danielsss/eslint-config-daniels
- Owner: danielsss
- License: mit
- Created: 2018-09-07T08:35:23.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-01-27T07:21:24.000Z (over 7 years ago)
- Last Synced: 2025-09-23T23:44:39.631Z (9 months ago)
- Language: JavaScript
- Size: 21.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.com/danielsss/eslint-config-daniels)
[](https://github.com/danielsss/eslint-config-daniels/issues)
[](https://github.com/danielsss/eslint-config-daniels/stargazers)
[](https://github.com/danielsss/eslint-config-daniels/blob/master/LICENSE)
# eslint-config-daniels
> ESLint shareable config for everyone
## Installation
```
$ npm install --save-dev eslint eslint-config-daniels
```
## Usage
Once the `eslint-config-daniels` package is installed, you can use it by specifying `daniels or ./node_moduls/eslint-config-daniels` in the [`extends`](http://eslint.org/docs/user-guide/configuring#extending-configuration-files) section of your [ESLint configuration](http://eslint.org/docs/user-guide/configuring).
```js
{
"extends": ["daniels"],
"rules": {}
}
```
### Using the `daniels` config with `eslint:recommended`
There are several rules in the [`eslint:recommended` ruleset](http://eslint.org/docs/rules/) that Google style is not opinionated about that you might want to enforce in your project.
To use `daniels` style in conjunction with ESLint's recommended rule set, extend them both, making sure to list `daniels` last:
```js
{
"extends": ["eslint:recommended", "daniels"],
"rules": {}
}
```
## License
MIT ©