add telephone numers to text parsing #26
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
Annotations
1 error and 4 warnings
test
Process completed with exit code 101.
|
test
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
use of `char::is_digit` with literal radix of 10:
src/parser/parse_from_text/phone_numbers.rs#L23
warning: use of `char::is_digit` with literal radix of 10
--> src/parser/parse_from_text/phone_numbers.rs:23:5
|
23 | input.is_digit(10)
| ^^^^^^^^^^^^^^^^^^ help: try: `input.is_ascii_digit()`
|
= note: `#[warn(clippy::is_digit_ascii_radix)]` on by default
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#is_digit_ascii_radix
|
use of `char::is_digit` with literal radix of 10:
src/parser/parse_from_text/phone_numbers.rs#L23
warning: use of `char::is_digit` with literal radix of 10
--> src/parser/parse_from_text/phone_numbers.rs:23:5
|
23 | input.is_digit(10)
| ^^^^^^^^^^^^^^^^^^ help: try: `input.is_ascii_digit()`
|
= note: `#[warn(clippy::is_digit_ascii_radix)]` on by default
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#is_digit_ascii_radix
|
use of `char::is_digit` with literal radix of 10:
src/parser/parse_from_text/phone_numbers.rs#L23
warning: use of `char::is_digit` with literal radix of 10
--> src/parser/parse_from_text/phone_numbers.rs:23:5
|
23 | input.is_digit(10)
| ^^^^^^^^^^^^^^^^^^ help: try: `input.is_ascii_digit()`
|
= note: `#[warn(clippy::is_digit_ascii_radix)]` on by default
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#is_digit_ascii_radix
|