Commit 810fbd31 authored by Diego Iván's avatar Diego Iván
Browse files

cambiando el limite de caracteres por linea

parent 44dc0887
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -6,10 +6,7 @@ module.exports = {
    sourceType: 'module',
  },
  plugins: ['@typescript-eslint/eslint-plugin'],
  extends: [
    'plugin:@typescript-eslint/recommended',
    'plugin:prettier/recommended',
  ],
  extends: ['plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended'],
  root: true,
  env: {
    node: true,
@@ -21,5 +18,6 @@ module.exports = {
    '@typescript-eslint/explicit-function-return-type': 'off',
    '@typescript-eslint/explicit-module-boundary-types': 'off',
    '@typescript-eslint/no-explicit-any': 'off',
    'max-len': ['error', { code: 120 }],
  },
};
+3 −2
Original line number Diff line number Diff line
{
  "singleQuote": true,
  "trailingComma": "all"
  "trailingComma": "all",
  "printWidth": 120
}