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
module.exports = { | |
extends: [ | |
"react-app", | |
"plugin:jsx-a11y/recommended", | |
"plugin:import/errors", | |
"plugin:import/warnings", | |
"plugin:import/typescript", | |
"plugin:css-modules/recommended", | |
// "plugin:redux-saga/recommended", | |
"plugin:jest/recommended" |
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
Cypress.Commands.add("clickRecaptcha", () => { | |
cy.window().then(win => { | |
win.document | |
.querySelector("iframe[src*='recaptcha']") | |
.contentDocument.getElementById("recaptcha-token") | |
.click(); | |
}); | |
}); |
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
@namespace url('http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul'); | |
#TabsToolbar { | |
display: block !important; | |
} | |
:root { | |
--tab-min-height: 23px !important; | |
} | |
/* Selectors for Firefox 71+ */ |
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
var Benchmark = require( 'benchmark') | |
var Immutable = require("immutable") | |
var suite = new Benchmark.Suite; | |
var json = { | |
"hello": [ | |
{ |
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
{-# LANGUAGE ScopedTypeVariables #-} | |
module Main where | |
import Criterion.Main | |
import Criterion.Config | |
import qualified Data.ByteString.Lazy as B | |
import qualified Data.ByteString.Lazy.Char8 as C | |
import GHC.Word | |
bstring = B.unpack . C.pack | |
map_:: String -> [GHC.Word.Word8] |
NewerOlder