Skip to content
This repository was archived by the owner on Oct 22, 2023. It is now read-only.

Commit 71355ed

Browse files
committed
Merge branch release/1.0.0
2 parents ceb0e4d + 73beea6 commit 71355ed

File tree

3 files changed

+44
-3
lines changed

3 files changed

+44
-3
lines changed

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Release Notes Coding Style
2+
3+
Extends [Airbnb JavaScript Style Guide][airbnb-js-styleguide] for use on [release-notes][release-notes] node projects.
4+
5+
## Installation
6+
7+
`$ npm i --save-dev @release-notes/eslint-config eslint eslint-plugin-import`
8+
9+
And add an `.eslintrc.yml` file:
10+
11+
```yml
12+
extends: '@release-notes'
13+
14+
plugins:
15+
- import
16+
17+
env:
18+
es6: true
19+
node: true
20+
21+
parserOptions:
22+
sourceType: script
23+
```
24+
25+
## Usage
26+
27+
Run `npm run lint` in order to test the codebase for coding standard violations.
28+
29+
---
30+
31+
### LICENSE
32+
33+
The files in this archive are released under MIT license.
34+
You can find a copy of this license in [LICENSE](LICENSE).
35+
36+
37+
[airbnb-js-styleguide]: https://github.com/airbnb/javascript
38+
[release-notes]: https://github.com/release-notes/release-notes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@release-notes/eslint-config",
3-
"version": "0.1.0",
3+
"version": "1.0.0",
44
"description": "ESLint configuration to check Coding Standards on Release Notes node.js projects.",
55
"main": "index.js",
66
"scripts": {

release-notes.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
title: Release Notes of Release Notes ESlint config
22

33
releases:
4-
- version: Next
4+
- version: 1.0.0
5+
date: 2017-08-23
6+
title: Eslint 4
7+
description: Update dependencies for eslint 4 compatibilitity
58
added:
69
- Introduce ci/cd pipeline, setup travic ci.
710
improved:
811
- Definition of comma dangle rules. Function params must not use trailing commas, anymore.
912
- Upgraded to lates dependencies ([email protected], [email protected]).
1013
- version: 0.1.0
11-
date: 2017-07-08T20:51:00Z
14+
date: 2017-07-08
1215
title: First Release
1316
description: Base coding styles, on top of airbnb base config
1417
added:

0 commit comments

Comments
 (0)