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:
parent
a0ba8ed5a5
commit
089907269a
9 changed files with 69 additions and 63 deletions
|
@ -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;
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue