This repository was archived by the owner on Oct 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +44
-3
lines changed Expand file tree Collapse file tree 3 files changed +44
-3
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @release-notes/eslint-config" ,
3
- "version" : " 0.1 .0" ,
3
+ "version" : " 1.0 .0" ,
4
4
"description" : " ESLint configuration to check Coding Standards on Release Notes node.js projects." ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change 1
1
title : Release Notes of Release Notes ESlint config
2
2
3
3
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
5
8
added :
6
9
- Introduce ci/cd pipeline, setup travic ci.
7
10
improved :
8
11
- Definition of comma dangle rules. Function params must not use trailing commas, anymore.
9
12
-
Upgraded to lates dependencies ([email protected] , [email protected] ).
10
13
- version : 0.1.0
11
- date : 2017-07-08T20:51:00Z
14
+ date : 2017-07-08
12
15
title : First Release
13
16
description : Base coding styles, on top of airbnb base config
14
17
added :
You can’t perform that action at this time.
0 commit comments