Dimitri POSTOLOV

Results 161 issues of Dimitri POSTOLOV

1. placeholder in flexsearch 2. callout styles

enhancement

### Description `unshift` is like `push` accept multiple arguments. ### Fail ```js let arr = []; arr.unshift('foo', 2) arr.unshift(true) ``` ### Pass ```js let arr = []; arr.unshift(true, 'foo', 2)...

evaluating
new rule

### Description if the new string starts with the previous string, prefer operator assignment as less code is written ### Fail ```js foo = foo + 'baz qux' ``` ```js...

help wanted
new rule

related https://github.com/dotansimha/graphql-code-generator/issues/7720 @charlypoly @dotansimha @n1ru4l For anyone who wanna works on this I created a failing test There is an infinite recursion in `packages/plugins/other/visitor-plugin-common/src/selection-set-to-object.ts` file in `_buildGroupedSelections()` method

## Description At this moment when we import documents we lost all comments, I added a failing test to show this unexpected behavior. Related # https://github.com/dotansimha/graphql-eslint/issues/504

**Is your feature request related to a problem? Please describe.** guild-website has a nice script for verifying broken links **Describe the solution you'd like** - add the same script as...

enhancement
docs
documentation