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.

20 lines
506B

  1. {
  2. "parser": "@typescript-eslint/parser",
  3. "extends": ["plugin:@typescript-eslint/recommended"],
  4. "parserOptions": {
  5. "ecmaVersion": 2018,
  6. "sourceType": "module"
  7. },
  8. "rules": {
  9. "semi": ["error", "always"],
  10. "quotes": ["error", "double"],
  11. "@typescript-eslint/explicit-function-return-type": "off",
  12. "@typescript-eslint/no-explicit-any": 1,
  13. "@typescript-eslint/no-inferrable-types": [
  14. "warn", {
  15. "ignoreParameters": true
  16. }
  17. ],
  18. "@typescript-eslint/no-unused-vars": "warn"
  19. }
  20. }