Add software acknowledgments, link to them from About window

This commit is contained in:
Evan Hahn 2020-09-16 11:40:15 -05:00 committed by Josh Perez
parent 42db239001
commit eba1bf3100
9 changed files with 3058 additions and 6 deletions

11
scripts/.eslintrc.js Normal file
View file

@ -0,0 +1,11 @@
module.exports = {
rules: {
// We still get the value of this rule, it just allows for dev deps
'import/no-extraneous-dependencies': [
'error',
{
devDependencies: true,
},
],
},
};