This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const defaultResults = { | |
default: [], | |
prolyConjugated: [], | |
femininePlural: [], | |
conjugated: [], | |
renderCount: 0, | |
}; | |
const getFilteredResults = (data: string[]): FilteredResults => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "Keychrone K6 for dev", | |
"rules": [ | |
{ | |
"description": "1 : open_bracket = <", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "open_bracket" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "number with caps", | |
"rules": [ | |
{ | |
"description": "caps_lock + numbers actually do numbers", | |
"manipulators": [ | |
{ | |
"conditions": [ | |
{ | |
"name": "caps_lock pressed", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
platform :android do | |
before_all do | |
skip_docs | |
end | |
desc "build an adhoc release for internal store" | |
lane :adhoc do | |
gradle | |
end |