Skip to content

Commit 67d8f75

Browse files
committed
Use HTTPS links
1 parent bf23644 commit 67d8f75

File tree

6 files changed

+12
-14
lines changed

6 files changed

+12
-14
lines changed

docs/rules/no-async-fn-without-await.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Translations: [Français](https://github.com/avajs/ava-docs/blob/master/fr_FR/related/eslint-plugin-ava/docs/rules/no-async-fn-without-await.md)
44

5-
AVA comes with built-in support for [async functions](http://www.2ality.com/2016/02/async-functions.html) (async/await). This allows you to write shorter and clearer tests.
5+
AVA comes with built-in support for async functions (async/await). This allows you to write shorter and clearer tests.
66

77
Declaring an async test without using the `await` keyword means that either a Promise is not awaited on as intended, or that the function could have been declared as a regular function, which is confusing and slower.
88

docs/rules/prefer-async-await.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Translations: [Français](https://github.com/avajs/ava-docs/blob/master/fr_FR/related/eslint-plugin-ava/docs/rules/prefer-async-await.md)
44

5-
AVA comes with built-in support for [async functions](http://www.2ality.com/2016/02/async-functions.html) (async/await). This allows you to write shorter and clearer tests.
5+
AVA comes with built-in support for async functions (async/await). This allows you to write shorter and clearer tests.
66

77
This rule will report an error when it finds a test that returns an expression that looks like a Promise (containing a `.then()` call), which could be simplified by using the async/await syntax.
88

maintaining.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
# Maintaining
22

3-
43
## Resources
54

6-
- [AST Explorer](http://astexplorer.net)
7-
- [Working with ESLint rules](http://eslint.org/docs/developer-guide/working-with-rules)
8-
5+
- [AST Explorer](https://astexplorer.net)
6+
- [Working with ESLint rules](https://eslint.org/docs/developer-guide/working-with-rules)
97

108
## Deprecating rules
119

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,6 @@ Enable it in your `package.json` with the `extends` option:
127127
}
128128
```
129129

130-
See the [ESLint docs](http://eslint.org/docs/user-guide/configuring#extending-configuration-files) for more information about extending config files.
130+
See the [ESLint docs](https://eslint.org/docs/user-guide/configuring#extending-configuration-files) for more information about extending config files.
131131

132-
**Note**: This config will also enable the correct [parser options](http://eslint.org/docs/user-guide/configuring#specifying-parser-options) and [environment](http://eslint.org/docs/user-guide/configuring#specifying-environments).
132+
**Note**: This config will also enable the correct [parser options](https://eslint.org/docs/user-guide/configuring#specifying-parser-options) and [environment](https://eslint.org/docs/user-guide/configuring#specifying-environments).

rules/no-statement-after-end.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const createAvaRule = require('../create-ava-rule');
33
const util = require('../util');
44

55
// This rule makes heavy use of ESLint's code path analysis
6-
// See: http://eslint.org/docs/developer-guide/code-path-analysis.html
6+
// See: https://eslint.org/docs/developer-guide/code-path-analysis.html
77

88
// Returns true if this node represents a call to `t.end(...)`
99
const isEndExpression = node =>

test/integration/test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ const packages = new Map([
1919
['pify', 'https://github.com/sindresorhus/pify'],
2020
['boxen', 'https://github.com/sindresorhus/boxen'],
2121
['make-dir', 'https://github.com/sindresorhus/make-dir'],
22-
['listr', 'http://github.com/SamVerschueren/listr'],
23-
['listr-update-renderer', 'http://github.com/SamVerschueren/listr-update-renderer'],
24-
['bragg', 'http://github.com/SamVerschueren/bragg'],
25-
['bragg-router', 'http://github.com/SamVerschueren/bragg-router'],
26-
['dev-time', 'http://github.com/SamVerschueren/dev-time'],
22+
['listr', 'https://github.com/SamVerschueren/listr'],
23+
['listr-update-renderer', 'https://github.com/SamVerschueren/listr-update-renderer'],
24+
['bragg', 'https://github.com/SamVerschueren/bragg'],
25+
['bragg-router', 'https://github.com/SamVerschueren/bragg-router'],
26+
['dev-time', 'https://github.com/SamVerschueren/dev-time'],
2727
['decode-uri-component', 'https://github.com/SamVerschueren/decode-uri-component'],
2828
['to-ico', 'https://github.com/kevva/to-ico'],
2929
['download', 'https://github.com/kevva/download'],

0 commit comments

Comments
 (0)