Extract and set form values through the DOM—no frameworks required! https://github.com/TheoryOfNekomata/formxtra
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 lines
531 B

  1. {
  2. "root": true,
  3. "extends": [
  4. "lxsmnsyc/typescript"
  5. ],
  6. "rules": {
  7. "@typescript-eslint/no-unsafe-assignment": "off",
  8. "@typescript-eslint/no-unsafe-argument": "off",
  9. "@typescript-eslint/no-unsafe-member-access": "off",
  10. "@typescript-eslint/no-unsafe-return": "off",
  11. "@typescript-eslint/no-unsafe-call": "off",
  12. "no-param-reassign": ["error", {
  13. "props": true,
  14. "ignorePropertyModificationsForRegex": ["[Ee]l$"]
  15. }]
  16. },
  17. "parserOptions": {
  18. "project": "./tsconfig.eslint.json"
  19. }
  20. }