Add ID - initial commit (#103) (#113)

* Adds a component for adding identifications, both from Obs Detail and Obs Edit
* Minor style and eslint change to disallow all-caps string literals

Closes #103 

Co-authored-by: Ken-ichi Ueda <kenichi.ueda@gmail.com>
This commit is contained in:
budowski
2022-07-03 02:01:48 +03:00
committed by GitHub
parent 2e184b97f4
commit 4b4b0f9244
18 changed files with 2413 additions and 777 deletions

View File

@@ -6,6 +6,12 @@ module.exports = {
"comma-dangle": [2, "never"],
"space-in-parens": [2, "always"],
"prettier/prettier": 0,
"i18next/no-literal-string": [2, {
words: {
// Minor change to the default to disallow all-caps string literals as well
exclude: ["[0-9!-/:-@[-`{-~]+"]
}
}],
"no-var": 1
},
// need this so jest doesn't show as undefined in jest.setup.js