1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-08 05:57:02 +09:00

add singlequote rule to linter

This commit is contained in:
Andrew Simachev 2023-08-12 18:06:02 +02:00
parent a0ba8ed5a5
commit 089907269a
No known key found for this signature in database
GPG key ID: 49A163D0D14E6FD8
9 changed files with 69 additions and 63 deletions

View file

@ -1,11 +1,10 @@
'use strict';
const fs = require('fs');
const stdin = process.openStdin();
let data = "";
stdin.on('data', function(chunk) {
let data = '';
stdin.on('data', (chunk) => {
data +=chunk;
});