.eslintrc.js 302 B

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