.eslintrc.js 261 B

12345678
  1. module.exports = {
  2. rules: {
  3. '@typescript-eslint/class-name-casing': 'off',
  4. 'no-unused-vars': 'off', // Required by the typescript rule below
  5. '@typescript-eslint/no-unused-vars': ['error'],
  6. '@typescript-eslint/naming-convention': 'off',
  7. },
  8. }