1234567891011121314151617181920 |
- "use strict";
- module.exports = {
- rules: {
- "@typescript-eslint/quotes": 0,
- "@typescript-eslint/brace-style": "off",
- "@typescript-eslint/comma-dangle": "off",
- "@typescript-eslint/comma-spacing": "off",
- "@typescript-eslint/func-call-spacing": "off",
- "@typescript-eslint/indent": "off",
- "@typescript-eslint/keyword-spacing": "off",
- "@typescript-eslint/member-delimiter-style": "off",
- "@typescript-eslint/no-extra-parens": "off",
- "@typescript-eslint/no-extra-semi": "off",
- "@typescript-eslint/semi": "off",
- "@typescript-eslint/space-before-function-paren": "off",
- "@typescript-eslint/type-annotation-spacing": "off",
- },
- };
|