1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-21 03:39:43 +00:00

Eslint force double-quotes for strings -- avoidEscape:true (#8482)

This commit is contained in:
Mario Pietsch 2024-08-04 13:48:57 +02:00 committed by GitHub
parent 2bc7ec4b94
commit c5c7279554
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -231,7 +231,10 @@ rules:
prefer-spread: 'off' prefer-spread: 'off'
prefer-template: 'off' prefer-template: 'off'
quote-props: 'off' quote-props: 'off'
quotes: 'off' quotes:
- error
- double
- avoidEscape: true
radix: 'off' radix: 'off'
require-atomic-updates: error require-atomic-updates: error
require-await: error require-await: error