File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -19,4 +19,10 @@ module.exports = {
1919 sourceType : 'module' ,
2020 } ,
2121 plugins : [ '@typescript-eslint' , 'eslint-plugin-import' ] ,
22+ rules : {
23+ quotes : [ 'error' , 'single' , {
24+ 'avoidEscape' : true ,
25+ 'allowTemplateLiterals' : false
26+ } ]
27+ }
2228} ;
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { config as dotenv } from 'dotenv';
33import { defineConfig , devices } from '@playwright/test' ;
44import { isKeyOfObject } from './src/utils/types' ;
55
6- dotenv ( { path : ` .env.local` , override : true } ) ;
6+ dotenv ( { path : ' .env.local' , override : true } ) ;
77
88const PROJECTS_LIST = {
99 DEV : [ 'Desktop Chrome' ] ,
Original file line number Diff line number Diff line change @@ -60,11 +60,12 @@ ${' '}
6060 } ) ;
6161
6262 //language=text
63- const codeWithMark = `fun containsEven(collection: Collection<Int>): Boolean = collection.any {[mark]TODO()[/mark]}` ;
63+ const codeWithMark =
64+ 'fun containsEven(collection: Collection<Int>): Boolean = collection.any {[mark]TODO()[/mark]}' ;
6465
6566 checkLink ( generateCrosslink ( codeWithMark ) , {
6667 //language=kotlin
67- code : ` fun containsEven(collection: Collection<Int>): Boolean = collection.any {TODO()}` ,
68+ code : ' fun containsEven(collection: Collection<Int>): Boolean = collection.any {TODO()}' ,
6869 } ) ;
6970 } ) ;
7071
You can’t perform that action at this time.
0 commit comments