https://github.com/shellscape/eslint-config-shellscape
ESLint shareable config for my projects
https://github.com/shellscape/eslint-config-shellscape
Last synced: 10 months ago
JSON representation
ESLint shareable config for my projects
- Host: GitHub
- URL: https://github.com/shellscape/eslint-config-shellscape
- Owner: shellscape
- License: mit
- Created: 2017-01-12T05:18:48.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-06-01T15:58:08.000Z (over 2 years ago)
- Last Synced: 2025-03-24T01:22:59.119Z (10 months ago)
- Language: JavaScript
- Size: 231 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-config-shellscape
> ESLint shareable config for my projects
## Install
```
$ npm install eslint-config-shellscape --save-dev
```
## Usage
This config can be used one of two ways:
### package.json:
```json
{
"name": "snoochi-boochies",
"eslintConfig": {
"extends": "shellscape"
}
}
```
### .eslintrc
```json
{
"extends": "shellscape"
}
```
### Use with TypeScript
```json
{
"extends": "shellscape/typescript"
}
```
### Use with Prettier
Create a `.prettierrc.js` file with the following content:
```js
module.exports = require('eslint-config-shellscape/prettier');
```
## License
MIT © [Andrew Powell](http://shellscape.org)