@typescript-eslint.js 676 B

1234567891011121314151617181920
  1. "use strict";
  2. module.exports = {
  3. rules: {
  4. "@typescript-eslint/quotes": 0,
  5. "@typescript-eslint/brace-style": "off",
  6. "@typescript-eslint/comma-dangle": "off",
  7. "@typescript-eslint/comma-spacing": "off",
  8. "@typescript-eslint/func-call-spacing": "off",
  9. "@typescript-eslint/indent": "off",
  10. "@typescript-eslint/keyword-spacing": "off",
  11. "@typescript-eslint/member-delimiter-style": "off",
  12. "@typescript-eslint/no-extra-parens": "off",
  13. "@typescript-eslint/no-extra-semi": "off",
  14. "@typescript-eslint/semi": "off",
  15. "@typescript-eslint/space-before-function-paren": "off",
  16. "@typescript-eslint/type-annotation-spacing": "off",
  17. },
  18. };