1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-18 12:02:53 +02:00

style: fix editorconfig linting

This commit is contained in:
Divlo
2021-11-10 20:17:14 +01:00
parent 0e0fd0b86d
commit 4bb9e6b656
2 changed files with 6 additions and 5 deletions

View File

@ -4,7 +4,7 @@ import { Challenge } from './Challenge'
import { Solution } from './Solution'
const solutionsRegex = new RegExp(
/challenges\/[\s\S]*\/solutions\/(c|cpp|cs|dart|java|javascript|python|rust|typescript)\/[\s\S]*\/(solution|Solution).(c|cpp|cs|dart|java|js|py|rs|ts)/
/challenges\/[\s\S]*\/solutions\/(c|cpp|cs|dart|java|javascript|python|rust|typescript)\/[\s\S]*\/(.*).(c|cpp|cs|dart|java|js|py|rs|ts)/
)
const dockerRegex = new RegExp(
@ -12,7 +12,7 @@ const dockerRegex = new RegExp(
)
const inputOutputRegex = new RegExp(
/challenges\/[\s\S]*\/test\/[0-9]\/(input.txt|output.txt)/
/challenges\/[\s\S]*\/test\/(.*)\/(input.txt|output.txt)/
)
export interface GitAffectedOptions {