Skip to content
This repository was archived by the owner on Mar 23, 2024. It is now read-only.

Commit 096b6bf

Browse files
committed
Docs: use "http" protocol in changelog
Fixes #2214
1 parent 6c6cda4 commit 096b6bf

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ One drawback from all these changes is that JSCS might be a little, just a littl
1414
### New rules
1515
Since this release is about rewrite of internal design, we adding only four new rules (all of them were added by our contributors!).
1616

17-
#### [`disallowUnusedVariables](https://jscs.info/rule/disallowUnusedVariables`) by Brian Schemp
17+
#### [`disallowUnusedVariables](http://jscs.info/rule/disallowUnusedVariables`) by Brian Schemp
1818
That rule useful when you have `var x = <whatever>` and you don't export that `x` and don't use it. This rule will highlight that and remove it if you want.
1919

20-
#### [`disallowSpacesInsideImportedObjectBraces](https://jscs.info/rule/disallowSpacesInsideImportedObjectBraces`) and [`requireSpacesInsideImportedObjectBraces](https://jscs.info/rule/requireSpacesInsideImportedObjectBraces`) by Maks Sadowsky
20+
#### [`disallowSpacesInsideImportedObjectBraces](http://jscs.info/rule/disallowSpacesInsideImportedObjectBraces`) and [`requireSpacesInsideImportedObjectBraces](http://jscs.info/rule/requireSpacesInsideImportedObjectBraces`) by Maks Sadowsky
2121
When you need or don't need additional parentheses -
2222
```js
2323
import /*–>*/{foo, bar}/*<–*/ from 'foo-bar';
2424
```
2525

26-
#### [`requireUseStrict](https://jscs.info/rule/requireUseStrict`) Erik Vold
26+
#### [`requireUseStrict](http://jscs.info/rule/requireUseStrict`) Erik Vold
2727
Short and cool - ask you to use `"use strict"` pragma on top of the file if you so desire.
2828

29-
#### [`requireImportsAlphabetized](https://jscs.info/rule/requireImportsAlphabetized`) by Ray Hammond
29+
#### [`requireImportsAlphabetized](http://jscs.info/rule/requireImportsAlphabetized`) by Ray Hammond
3030
Keeps your imports alphabetized, pretty handy way to keep your dependency in tidy state.
3131

3232
### Presets
@@ -42,11 +42,11 @@ There are a lot of internal changes but we like to keep this changelog short and
4242

4343
Spring release! Yeah, yeah, technically spring only comes in middle of the March (you nerds, you), but we're coming to you a bit earlier!
4444

45-
Anyways, there are three new rules, a couple of changes for the `airbnb` preset and important fixes for [`disallowSpacesInsideTemplateStringPlaceholders`](https://jscs.info/rule/disallowSpacesInsideTemplateStringPlaceholders) and [`validateQuoteMarks`](https://jscs.info/rule/validateQuoteMarks) (for all you ES7 lovers).
45+
Anyways, there are three new rules, a couple of changes for the `airbnb` preset and important fixes for [`disallowSpacesInsideTemplateStringPlaceholders`](http://jscs.info/rule/disallowSpacesInsideTemplateStringPlaceholders) and [`validateQuoteMarks`](http://jscs.info/rule/validateQuoteMarks) (for all you ES7 lovers).
4646

4747
### New Rules
4848

49-
### [`requireSpaceBeforeDestructuredValues`](https://jscs.info/rule/requireSpaceBeforeDestructuredValues) by Maks Sadowsky
49+
### [`requireSpaceBeforeDestructuredValues`](http://jscs.info/rule/requireSpaceBeforeDestructuredValues) by Maks Sadowsky
5050

5151
Enforces colon spacing after destructuring assignment i.e. [`requireSpaceBeforeObjectValues`](http://jscs.info/rule/requireSpaceBeforeObjectValues) but for destructuring.
5252

@@ -58,7 +58,7 @@ const { String: EmberString } = Ember;
5858
const { String:EmberString } = Ember;
5959
```
6060

61-
### [`disallowArrayDestructuringReturn`](https://jscs.info/rule/disallowArrayDestructuringReturn) by Maks Sadowsky
61+
### [`disallowArrayDestructuringReturn`](http://jscs.info/rule/disallowArrayDestructuringReturn) by Maks Sadowsky
6262

6363
Enforces the [5:3 verse](https://github.com/airbnb/javascript#5.3) of airbnb code style, which prohibits use of array destructuring for thy `CallExpressions`.
6464

@@ -70,7 +70,7 @@ const { left, right } = processInput(input);
7070
const [left, __, top] = processInput(input);
7171
```
7272

73-
### [`requireNewlineBeforeSingleStatementsInIf`](https://jscs.info/rule/requireNewlineBeforeSingleStatementsInIf) by Brian Schemp
73+
### [`requireNewlineBeforeSingleStatementsInIf`](http://jscs.info/rule/requireNewlineBeforeSingleStatementsInIf) by Brian Schemp
7474

7575
Enforces using newlines in your *parenthesesless* code.
7676

0 commit comments

Comments
 (0)