Skip to content

Commit 30b98ba

Browse files
More HTTP => HTTPS
1 parent cfe5fe2 commit 30b98ba

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

docs/rules/jsx-curly-spacing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ Examples of **correct** code for this rule, when configured with `"never"` and `
219219
<App blah={3} foo={ {bar: true, baz: true} } />;
220220
```
221221

222-
Please note that spacing of the object literal curly braces themselves is controlled by the built-in [`object-curly-spacing`](http://eslint.org/docs/rules/object-curly-spacing) rule.
222+
Please note that spacing of the object literal curly braces themselves is controlled by the built-in [`object-curly-spacing`](https://eslint.org/docs/rules/object-curly-spacing) rule.
223223

224224
### Shorthand options
225225

docs/rules/jsx-uses-vars.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Prevent variables used in JSX to be incorrectly marked as unused (react/jsx-uses-vars)
22

3-
Since 0.17.0 the `eslint` `no-unused-vars` rule does not detect variables used in JSX ([see details](http://eslint.org/blog/2015/03/eslint-0.17.0-released#changes-to-jsxreact-handling)). This rule will find variables used in JSX and mark them as used.
3+
Since 0.17.0 the `eslint` `no-unused-vars` rule does not detect variables used in JSX ([see details](https://eslint.org/blog/2015/03/eslint-0.17.0-released#changes-to-jsxreact-handling)). This rule will find variables used in JSX and mark them as used.
44

55
This rule only has an effect when the `no-unused-vars` rule is enabled.
66

docs/rules/no-render-return-value.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Prevent usage of the return value of ReactDOM.render (react/no-render-return-value)
22

3-
> `ReactDOM.render()` currently returns a reference to the root `ReactComponent` instance. However, using this return value is legacy and should be avoided because future versions of React may render components asynchronously in some cases. If you need a reference to the root `ReactComponent` instance, the preferred solution is to attach a [callback ref](http://facebook.github.io/react/docs/more-about-refs.html#the-ref-callback-attribute) to the root element.
3+
> `ReactDOM.render()` currently returns a reference to the root `ReactComponent` instance. However, using this return value is legacy and should be avoided because future versions of React may render components asynchronously in some cases. If you need a reference to the root `ReactComponent` instance, the preferred solution is to attach a [callback ref](https://reactjs.org/docs/refs-and-the-dom.html#callback-refs) to the root element.
44
55
Source: [ReactDOM documentation](https://facebook.github.io/react/docs/react-dom.html#render)
66

docs/rules/no-unused-prop-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,5 +140,5 @@ AComponent.propTypes = {
140140
```
141141

142142
[PropTypes]: https://reactjs.org/docs/typechecking-with-proptypes.html
143-
[TypeScript]: http://www.typescriptlang.org/
143+
[TypeScript]: https://www.typescriptlang.org/
144144
[Flow]: https://flow.org/

docs/rules/prefer-stateless-function.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Stateless functional components are simpler than class based components and will
66

77
This rule will check your class based React components for
88

9-
* methods/properties other than `displayName`, `propTypes`, `contextTypes`, `defaultProps`, `render` and useless constructor (same detection as `eslint` [no-useless-constructor rule](http://eslint.org/docs/rules/no-useless-constructor))
9+
* methods/properties other than `displayName`, `propTypes`, `contextTypes`, `defaultProps`, `render` and useless constructor (same detection as `eslint` [no-useless-constructor rule](https://eslint.org/docs/rules/no-useless-constructor))
1010
* instance property other than `this.props` and `this.context`
1111
* extension of `React.PureComponent` (if the `ignorePureComponents` flag is true)
1212
* presence of `ref` attribute in JSX

docs/rules/prop-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,5 +176,5 @@ For now we should detect components created with:
176176
* an ES6 class that inherit from `React.Component` or `Component`
177177

178178
[PropTypes]: https://reactjs.org/docs/typechecking-with-proptypes.html
179-
[TypeScript]: http://www.typescriptlang.org/
179+
[TypeScript]: https://www.typescriptlang.org/
180180
[Flow]: https://flow.org/

docs/rules/require-default-props.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,5 +348,5 @@ If you don't care about using `defaultProps` for your component's props that are
348348
- [Official React documentation on defaultProps](https://facebook.github.io/react/docs/typechecking-with-proptypes.html#default-prop-values)
349349

350350
[PropTypes]: https://reactjs.org/docs/typechecking-with-proptypes.html
351-
[TypeScript]: http://www.typescriptlang.org/
351+
[TypeScript]: https://www.typescriptlang.org/
352352
[Flow]: https://flow.org/

0 commit comments

Comments
 (0)