Skip to content

Commit 2782025

Browse files
committed
feat: add recommended standard config
1 parent d02babb commit 2782025

File tree

10 files changed

+3576
-4
lines changed

10 files changed

+3576
-4
lines changed

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ logs
88
yarn-debug.log*
99
yarn-error.log*
1010

11-
# dotenv environment variables file
12-
.env
13-
.env.test
14-
1511
# Optional cache directory
1612
.npm
1713
.cache

CHANGELOG.md

Whitespace-only changes.

README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# ESLint config of `JavaScript Standard Style`
2+
3+
A fork of the [eslint-config-standard](https://github.com/standard/eslint-config-standard) rules for use with ESLint 9+.
4+
5+
[![npm][npm-shields]][npm-package]
6+
[![license][license-shields]][license-file]
7+
8+
## Installation
9+
10+
```shell
11+
npm i -D eslint-config-std
12+
```
13+
14+
## Usage
15+
16+
Use in your `eslint.config.js` file anytime you want to extend the configs:
17+
18+
```js
19+
import standard from 'eslint-config-std'
20+
21+
export default [
22+
...standard.configs.recommended,
23+
]
24+
```
25+
26+
## Learn more
27+
28+
For the full listing of rules, FAQs, and more, visit the main
29+
[JavaScript Standard Style repo](http://standardjs.com).
30+
31+
## License
32+
33+
[MIT](LICENSE)
34+
35+
Copyright (c) 2024-present, Valmisson Grizorte
36+
37+
38+
[npm-shields]: https://img.shields.io/npm/v/eslint-config-std.svg
39+
[license-shields]: https://img.shields.io/badge/license-MIT-green
40+
[npm-package]: https://www.npmjs.com/package/eslint-config-std
41+
[license-file]: https://github.com/valmisson/eslint-config-std/blob/main/LICENSE

0 commit comments

Comments
 (0)