Skip to content

Commit

Permalink
ascii-49: improve coverage, add cjs and esm
Browse files Browse the repository at this point in the history
  • Loading branch information
gtktsc committed Sep 18, 2023
1 parent 43214bf commit 5b07ef1
Show file tree
Hide file tree
Showing 15 changed files with 1,998 additions and 1,283 deletions.
16 changes: 6 additions & 10 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,19 @@ module.exports = {
es2021: true,
jest: true,
},
extends: ['airbnb-base', 'plugin:import/typescript', 'plugin:@typescript-eslint/recommended'],
extends: [
'airbnb-base',
'plugin:import/typescript',
'plugin:@typescript-eslint/recommended',
'prettier',
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 13,
sourceType: 'module',
},
plugins: ['@typescript-eslint'],
rules: {
'import/prefer-default-export': 'off',
'import/extensions': 'off',
'class-methods-use-this': 'off',
'object-curly-newline': 'off',
'no-useless-constructor': 'off',
'no-empty-function': 'off',
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'arrow-body-style': 'off',
'operator-linebreak': 'off',
},
};
Loading

0 comments on commit 5b07ef1

Please sign in to comment.