@-moz-document url-prefix("chrome://devtools/content/") {
:root {
--theme-body-font-size: 13px !important;
--theme-code-font-size: 13px !important;
--theme-code-line-height: 1.2 !important;
--monospace-font-family: 'Hack', monospace !important;
}
}
\
) после Report
$ cat distr.sed
1 i\
\
Linux Distributions Report
s/\([0-9]\{2\}\)\/\([0-9]\{2\}\)\/\([0-9]\{4\}\)$/\3-\1-\2/
y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/
$ sed -f distr.sed distr.txt
Linux Distributions Report
SUSE 10.2 2006-12-07
FEDORA 10 2008-11-25
SUSE 11.0 2008-06-19
UBUNTU 8.04 2008-04-24
// package.json
{
"husky": {
"hooks": {
"pre-push": "lint-staged"
}
}
}
// lint-staged.config.js
module.exports = {
'./client/public/app-react/src/**/*.js': () => 'jest ./client/public/app-react/src --coverage',
}