Kaspar V.
Kaspar V.
Typescript constant output typing uses extraction from enum or from the constant (when defined with `as const`). Examples: ```ts export enum MyIconsSet { Foo = 'foo', Bar = 'bar', }...
1. eslint installation with configuration 2. [.eslint-todo.json](https://github.com/tancredi/fantasticon/blob/1da8a310f8622c74f05638694858a68aab9c7975/.eslint-todo.json) excludes existing code violating the new eslint rules, so no existing code has to be altered just for the linter. 3. [dev-scripts/generate-eslint-todo.ts](https://github.com/tancredi/fantasticon/blob/1da8a310f8622c74f05638694858a68aab9c7975/dev-scripts/generate-eslint-todo.ts) generates...
1. Upgrade all outdated npm dependencies 2. add missing @types/ packages (using [typesync](https://github.com/jeffijoe/typesync)) 3. lift the minimum node version requirement to node 12.x (was 10.x)
This might look like a horrible amount of changes, but it actually is not as bad as it might look at first glance. It's basically doing this: - splits each...
Fixed: 1. _.uniqWith not within the `## Collection*` header section 1. _.uniqWith's `### Browser Support for` -> `#### Browser Support for` so it is arranged within not adjacent of _.uniqWith...
I hardly ever write plain JS any more nowadays, so I kind of have to type these very fine examples given here for myself all the time. So how about...
- Models inherit `ApplicationRecord` -> not `ActiveRecord::Base` - `validates_presence_of` -> `validates :attr_name, presence: true` Just creating this issue so I can mention it in my little pr #100 filling it
**Is your feature request related to a problem? Please describe.** Currently, I see no way to disable the linter for only part of a project. I could only help myself...
- [x] Mention that pseudo content like this will be exposed by modern browsers to AT. - [ ] Indicate that if one does not wish to have these dividers...
# RuboCop update and gem group - update rubocop and rubocop-rails gems - add rubocop-rspec and rubocop-performance gems - move all rubocop gems to the `:development, :test` gem group –...