Valeriy Sotnikov

Results 11 comments of Valeriy Sotnikov

```python # admin.py from django.contrib import admin from . import models from django.urls import reverse from django.utils.html import format_html def html_tag_a(href, content): return '%s' % (href, content) class SomeModelAdmin(admin.ModelAdmin): readonly_fields...

Additional screenshots ![image](https://user-images.githubusercontent.com/10273334/82127930-bc2f8500-97bf-11ea-9d62-88e80dbec869.png) Validation works for string. ![image](https://user-images.githubusercontent.com/10273334/82127944-cb163780-97bf-11ea-8c7d-833b992c7f38.png) Validation don't work for object.

I published package [ts-keyof](https://www.npmjs.com/package/ts-keyof). Maybe it will be useful for someone. Thanks for ts-nameof! I used it about 3 years, but now I need use esbuild and swc.

@wh1t3cAt1k If for you enough [ts-keyof](https://www.npmjs.com/package/ts-keyof) then you can disable `useAliasesForRenames` in VSCode: https://github.com/microsoft/TypeScript/issues/29238#issuecomment-494866713 ![Screen-Recording-2022-07-28-at-09 02 48](https://user-images.githubusercontent.com/10273334/181433277-5fe99fa4-aa38-4f9d-abf4-0ba625eea26a.gif) I declined rename for interface property in my lib, because it doesn't work...

My performance tests look bad :] **package.json** ```json { "name": "@scope/root", "packageManager": "[email protected]", "private": true, "workspaces": ["lib"], "scripts": { "lib": "yarn workspace @scope/lib", "lib-log": "yarn lib log" } } ```...

@arcanis I wanted to show people different between `yarn run` and `shell` with simple script without any dependencies. Now, I tried [turbo](https://www.npmjs.com/package/turbo) and it works for me faster than `yarn...

I have problem too: JSX element type 'Container' does not have any construct or call signatures. ts(2604). My env: yarn@3 + workspaces, [email protected], typescript@4. ```tsx import { styled } from...

Changes work for my project over `yarn link`. How to fix tests? :) ![image](https://user-images.githubusercontent.com/10273334/79978791-24cd5f80-84a9-11ea-927d-885b81c67306.png) ```log yarn run v1.13.0 $ yarn tslint && yarn build && jest $ tslint -c tslint.json...

@mvantoorn Hello! I use https://www.npmjs.com/package/@sotnikov/next-with-apollo it works.