Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
Remove eslint dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Oct 5, 2023
1 parent 6647fb6 commit 033b949
Show file tree
Hide file tree
Showing 13 changed files with 205 additions and 4,373 deletions.
6 changes: 0 additions & 6 deletions .eslintignore

This file was deleted.

37 changes: 0 additions & 37 deletions .eslintrc.yml

This file was deleted.

4 changes: 0 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,3 @@ updates:
ignore:
- dependency-name: '@types/*'
update-types: ['version-update:semver-major']
groups:
eslint-dependencies:
patterns:
- '*eslint*'
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,13 @@ on:
- '.github/dependabot.yml'
- 'LICENSE'
- '.editorconfig'
- '.eslintrc.js'
- 'README.md'
- '.vscode/**'
pull_request:
paths-ignore:
- '.github/dependabot.yml'
- 'LICENSE'
- '.editorconfig'
- '.eslintrc.js'
- 'README.md'
- '.vscode/**'
jobs:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ on:
- 'LICENSE'
- '.editorconfig'
- 'dprint.json'
- '.eslintrc.js'
- 'README.md'
- '.vscode/**'
pull_request:
Expand All @@ -16,7 +15,6 @@ on:
- 'LICENSE'
- '.editorconfig'
- 'dprint.json'
- '.eslintrc.js'
- 'README.md'
- '.vscode/**'

Expand Down
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,6 @@ typings/
# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
Expand Down
1 change: 0 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"github.vscode-github-actions",
"editorconfig.editorconfig",
"dprint.dprint",
Expand Down
2 changes: 2 additions & 0 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ script = [
category = "Tools"
description = "Run linters with changes"
dependencies = [
# TODO: Remove since dropped eslint
# Do not run parallel, because of dprint is superfast and eslint is slow. So sequential makes useful here.
"format-apply",
]
Expand All @@ -54,6 +55,7 @@ script = [
category = "Tools"
description = "Run linters without changes"
dependencies = [
# TODO: Remove since dropped eslint
# Do not run parallel, because of dprint is superfast and eslint is slow. So sequential makes useful here.
"format-check",
]
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21235,7 +21235,7 @@ const cuidRegex = /^c[^\s-]{8,}$/i;
const cuid2Regex = /^[a-z][a-z0-9]*$/;
const ulidRegex = /[0-9A-HJKMNP-TV-Z]{26}/;
const uuidRegex = /^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/i;
const emailRegex = /^([A-Z0-9_+-]+\.?)*[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\-]*\.)+[A-Z]{2,}$/i;
const emailRegex = /^(?!\.)(?!.*\.\.)([A-Z0-9_+-\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\-]*\.)+[A-Z]{2,}$/i;
const emojiRegex = /^(\p{Extended_Pictographic}|\p{Emoji_Component})+$/u;
const ipv4Regex = /^(((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\.){3}((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))$/;
const ipv6Regex = /^(([a-f0-9]{1,4}:){7}|::([a-f0-9]{1,4}:){0,6}|([a-f0-9]{1,4}:){1}:([a-f0-9]{1,4}:){0,5}|([a-f0-9]{1,4}:){2}:([a-f0-9]{1,4}:){0,4}|([a-f0-9]{1,4}:){3}:([a-f0-9]{1,4}:){0,3}|([a-f0-9]{1,4}:){4}:([a-f0-9]{1,4}:){0,2}|([a-f0-9]{1,4}:){5}:([a-f0-9]{1,4}:){0,1})([a-f0-9]{1,4}|(((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\.){3}((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2})))$/;
Expand Down
Loading

0 comments on commit 033b949

Please sign in to comment.