Skip to content

Commit

Permalink
Allow irregular whitespace in regex
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiriVulpes committed Nov 6, 2024
1 parent b00d53b commit 0e3fba6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ module.exports = /** @type {import("eslint").Linter.BaseConfig & import("@typesc
"no-unexpected-multiline": ["off"], // sometimes i want to do zero indexing on a new line
"semi": ["warn", "never"],
"no-cond-assign": ["off"], // i have literally never had a bug due to this before, so loosening this restriction
"no-irregular-whitespace": ["warn", { skipRegExps: true }],

// typescript-eslint
"@typescript-eslint/no-unused-vars": ["off"], // literally just what typescript already has, no thanks
Expand Down

0 comments on commit 0e3fba6

Please sign in to comment.