Michał Sajnóg
Michał Sajnóg
**Describe the bug** I'm displaying a desktop preview of nominal size `1280x720` in a smaller box using `transform: scale(0.25)`. My box has other things inside, like navigation bar etc. that's...
I'm trying to use this plugin in Vue 2. Typescript checker works as expected, however when I install and enable `vls` in config - I'm getting bunch of errors pointing...
According to https://github.com/ember-cli/ember-rfc176-data I think we can add a rule that will check if reserved identifiers like `Object` are being imported. **Incorrect:** ``` import Object from '@ember/object'; ``` **Correct:** ```...
Proposed rule should check if there are any unused dependent properties in computed properties. Correct: ``` test: computed('a', 'b', function() { return get(this, 'a') + get(this, 'b'); }), ``` Incorrect:...
Hey, I was playing with Glimmer today and found out that it's application pipeline doesn't have `import` method, but in the generated blueprint there is information that it should be...
This PR updates package.json and replaces currently used 'module' field with a recommended by NodeJS 'export' field. [According to documentation](https://nodejs.org/dist/latest-v16.x/docs/api/packages.html#dual-commonjses-module-packages) the 'module' field is ignored by NodeJS and only used...
## Description It is impossible to prevent accidental closing of a tab by a user. It is due to the fact that in XMPP module there is a listener attached...
**Style guide:** https://vuejs.org/v2/style-guide/#Simple-expressions-in-templates-strongly-recommended **Description:** This rule would enforce usage of simple expressions in templates. Instead of writing complex logic in templates it should be moved to computed properties and only...